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 4c3081c commit e309415Copy full SHA for e309415
src/zarr/api/asynchronous.py
@@ -308,6 +308,8 @@ async def open(
308
return await open_array(store=store_path, zarr_format=zarr_format, **kwargs)
309
except (KeyError, NodeTypeValidationError):
310
# KeyError for a missing key
311
+ # FileNotFoundError for missing key as well.
312
+ # TODO: consolidate these exceptions
313
# NodeTypeValidationError for failing to parse node metadata as an array when it's
314
# actually a group
315
return await open_group(store=store_path, zarr_format=zarr_format, **kwargs)
0 commit comments