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 431e244 commit d8b5ca7Copy full SHA for d8b5ca7
src/zarr/codecs/numcodecs_.py
@@ -22,7 +22,7 @@ def parse_codec_configuration(data: dict[str, JSON], expected_name_prefix: str)
22
raise ValueError(
23
f"Expected name to start with '{expected_name_prefix}'. Got {parsed_name} instead."
24
)
25
- id = parsed_name[len(expected_name_prefix) :]
+ id = parsed_name[len(expected_name_prefix):]
26
return {"id": id, **parsed_configuration}
27
28
0 commit comments