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 7533d95 commit 542c3ecCopy full SHA for 542c3ec
src/zarr/storage/_zep8.py
@@ -323,7 +323,12 @@ def is_zep8_url(url: Any) -> bool:
323
and adapter_name.lower() not in standard_schemes
324
and "/" not in adapter_name
325
and "\\" not in adapter_name
326
- and not (len(adapter_name) == 1 and adapter_name.isalpha() and len(parts) == 2 and (parts[1].startswith("/") or parts[1].startswith("\\")))
+ and not (
327
+ len(adapter_name) == 1
328
+ and adapter_name.isalpha()
329
+ and len(parts) == 2
330
+ and (parts[1].startswith("/") or parts[1].startswith("\\"))
331
+ )
332
and (
333
adapter_name.isalnum()
334
or adapter_name.replace("_", "").replace("-", "").isalnum()
0 commit comments