Skip to content

Commit

Permalink
Run a model without compression
Browse files Browse the repository at this point in the history
  • Loading branch information
visr committed Feb 19, 2024
1 parent ee20f19 commit a4bd85c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/src/write.jl
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ end
function write_arrow(
path::AbstractString,
table::NamedTuple,
compress::TranscodingStreams.Codec,
compress::Union{ZstdCompressor, Nothing},
)::Nothing
# ensure DateTime is encoded in a compatible manner
# https://github.com/apache/arrow-julia/issues/303
Expand Down
2 changes: 1 addition & 1 deletion python/ribasim_testmodels/ribasim_testmodels/trivial.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,6 @@ def trivial_model() -> ribasim.Model:
tabulated_rating_curve=rating_curve,
starttime="2020-01-01 00:00:00",
endtime="2021-01-01 00:00:00",
results=ribasim.Results(subgrid=True),
results=ribasim.Results(subgrid=True, compression=False),
)
return model

0 comments on commit a4bd85c

Please sign in to comment.