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 2936179 commit ce4aa18Copy full SHA for ce4aa18
src/zarr/errors.py
@@ -134,16 +134,10 @@ class ZarrRuntimeWarning(RuntimeWarning):
134
"""
135
136
137
-class VindexInvalidSelectionError(IndexError):
138
- _msg = (
139
- "unsupported selection type for vectorized indexing; only "
140
- "coordinate selection (tuple of integer arrays) and mask selection "
141
- "(single Boolean array) are supported; got {!r}"
142
- )
+class VindexInvalidSelectionError(IndexError): ...
143
144
145
-class NegativeStepError(IndexError):
146
- _msg = "only slices with step >= 1 are supported"
+class NegativeStepError(IndexError): ...
147
148
149
class BoundsCheckError(IndexError): ...
0 commit comments