Skip to content

Commit

Permalink
Merge pull request #50 from ACCESS-NRI/49-fsspec-fix
Browse files Browse the repository at this point in the history
Fix for fsspec>=2023.10.0
  • Loading branch information
dougiesquire authored Nov 2, 2023
2 parents 709a437 + 688c76e commit 2ddddad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/intake_dataframe_catalog/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ def save(
f"{save_path}", storage_options=self.storage_options
)
fs = mapper.fs
fname = f"{mapper.fs.protocol}://{save_path}"
fname = fs.unstrip_protocol(save_path)

csv_kwargs = {"index": False}
csv_kwargs.update(kwargs.copy() or {})
Expand Down

0 comments on commit 2ddddad

Please sign in to comment.