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 e6e5920 commit a732fb2Copy full SHA for a732fb2
1 file changed
packages/zarr-metadata/src/zarr_metadata/v3/codec/blosc.py
@@ -4,7 +4,7 @@
4
See https://zarr-specs.readthedocs.io/en/latest/v3/codecs/blosc/index.html
5
"""
6
7
-from typing import Final, Literal, TypedDict
+from typing import Final, Literal, NotRequired, TypedDict
8
9
BLOSC_CODEC_NAME: Final = "blosc"
10
"""The `name` field value of the `blosc` codec."""
@@ -37,7 +37,7 @@ class BloscCodecConfiguration(TypedDict):
37
clevel: int
38
shuffle: BloscShuffle
39
blocksize: int
40
- typesize: int
+ typesize: NotRequired[int]
41
42
43
class BloscCodec(TypedDict):
0 commit comments