Skip to content

Commit d8b5ca7

Browse files
committed
pep8
1 parent 431e244 commit d8b5ca7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/zarr/codecs/numcodecs_.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def parse_codec_configuration(data: dict[str, JSON], expected_name_prefix: str)
2222
raise ValueError(
2323
f"Expected name to start with '{expected_name_prefix}'. Got {parsed_name} instead."
2424
)
25-
id = parsed_name[len(expected_name_prefix) :]
25+
id = parsed_name[len(expected_name_prefix):]
2626
return {"id": id, **parsed_configuration}
2727

2828

0 commit comments

Comments
 (0)