Skip to content

Commit 713bda9

Browse files
committed
Fix exports
1 parent 42b4cb5 commit 713bda9

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

src/zarr/errors.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@
88
"GroupNotFoundError",
99
"MetadataValidationError",
1010
"NodeTypeValidationError",
11+
"UnstableSpecificationWarning",
1112
"ZarrDeprecationWarning",
1213
"ZarrFutureWarning",
14+
"ZarrRuntimeWarning",
1315
]
1416

1517

@@ -76,6 +78,12 @@ class ZarrFutureWarning(FutureWarning):
7678
"""
7779

7880

81+
class UnstableSpecificationWarning(ZarrFutureWarning):
82+
"""
83+
A warning raised to indicate that a feature is outside the Zarr specification.
84+
"""
85+
86+
7987
class ZarrDeprecationWarning(DeprecationWarning):
8088
"""
8189
A warning raised to indicate that a construct will be removed in a future release.
@@ -92,6 +100,3 @@ class ZarrRuntimeWarning(RuntimeWarning):
92100
"""
93101
A warning for dubious runtime behavior.
94102
"""
95-
96-
97-
class UnstableSpecificationWarning(ZarrFutureWarning): ...

0 commit comments

Comments
 (0)