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 cf12cdc commit 82e10d6Copy full SHA for 82e10d6
1 file changed
packages/zarr-metadata/src/zarr_metadata/v3/codec/crc32c.py
@@ -9,15 +9,17 @@
9
10
from typing import Final, Literal, NotRequired, TypedDict
11
12
-from zarr_metadata.common import JSON
13
-
14
CRC32C_CODEC_NAME: Final = "crc32c"
15
"""The `name` field value of the `crc32c` codec."""
16
17
Crc32cCodecName = Literal["crc32c"]
18
"""Literal type of the `name` field of the `crc32c` codec."""
19
20
+class Empty(TypedDict, closed=True): # type: ignore[call-arg]
+ """An empty mapping"""
21
+
22
23
class Crc32cCodec(TypedDict):
24
"""`crc32c` codec metadata.
25
@@ -26,7 +28,7 @@ class Crc32cCodec(TypedDict):
26
28
"""
27
29
30
name: Crc32cCodecName
- configuration: NotRequired[dict[str, JSON]]
31
+ configuration: NotRequired[Empty]
32
33
34
__all__ = [
0 commit comments