Skip to content

Commit

Permalink
Fix sneaky syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
Clay Harrison committed Apr 24, 2024
1 parent 680d324 commit 86c9ba7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ascat/read_native/cell_collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ def __init__(self, filename, chunks=None):
def read(self, date_range=None, valid_gpis=None):
ds = xr.open_dataset(self.filename)
# ds = ds.set_index(locations="location_id")
ds = ds.chunk({"time": self.chunks, "locations": self.chunks"})
ds = ds.chunk({"time": self.chunks, "locations": self.chunks})
# do these after merging?
if date_range is not None:
ds = ds.sel(time=slice(*date_range))
Expand Down

0 comments on commit 86c9ba7

Please sign in to comment.