We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ca5aa6 commit 6ba67e1Copy full SHA for 6ba67e1
intake_esm/cat.py
@@ -178,7 +178,8 @@ def save(
178
directory = os.getcwd()
179
180
# Configure the fsspec mapper and associated filenames
181
- mapper = fsspec.get_mapper(f'{directory}', storage_options=storage_options)
+ storage_options = storage_options if storage_options is not None else {}
182
+ mapper = fsspec.get_mapper(f'{directory}', **storage_options)
183
fs = mapper.fs
184
csv_file_name = fs.unstrip_protocol(f'{mapper.root}/{name}.csv')
185
json_file_name = fs.unstrip_protocol(f'{mapper.root}/{name}.json')
0 commit comments