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.
from_dict
1 parent cfad862 commit 1027f2cCopy full SHA for 1027f2c
1 file changed
src/zarr/codecs/bytes.py
@@ -50,6 +50,7 @@ def from_dict(cls, data: dict[str, JSON]) -> Self:
50
data, "bytes", require_configuration=False
51
)
52
configuration_parsed = configuration_parsed or {}
53
+ configuration_parsed.setdefault("endian", None)
54
return cls(**configuration_parsed) # type: ignore[arg-type]
55
56
def to_dict(self) -> dict[str, JSON]:
0 commit comments