Skip to content

Commit

Permalink
Update NWMFileClient.py concat method. (#252)
Browse files Browse the repository at this point in the history
* change method used to concat dask dataframes from multi to non-multi

* bump nwm client new to 7.4.2
  • Loading branch information
jarq6c authored Jun 7, 2024
1 parent 529875b commit 054db88
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,8 @@ def get(
warnings.warn(message, RuntimeWarning)

# Concatenate
data = dd.multi.concat(dfs)
# data = dd.multi.concat(dfs)
data = dd.concat(dfs)

# Convert units
if self.unit_system == MeasurementUnitSystem.US:
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "7.4.1"
__version__ = "7.4.2"

0 comments on commit 054db88

Please sign in to comment.