File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ class VindexInvalidSelectionError(IndexError):
6868 _msg = (
6969 "unsupported selection type for vectorized indexing; only "
7070 "coordinate selection (tuple of integer arrays) and mask selection "
71- "(single Boolean array) are supported; got {0 !r}"
71+ "(single Boolean array) are supported; got {!r}"
7272 )
7373
7474
Original file line number Diff line number Diff line change @@ -9,17 +9,17 @@ def __init__(self, *args: Any) -> None:
99
1010
1111class ContainsGroupError (_BaseZarrError ):
12- _msg = "A group exists in store {0 !r} at path {1 !r}."
12+ _msg = "A group exists in store {!r} at path {!r}."
1313
1414
1515class ContainsArrayError (_BaseZarrError ):
16- _msg = "An array exists in store {0 !r} at path {1 !r}."
16+ _msg = "An array exists in store {!r} at path {!r}."
1717
1818
1919class ContainsArrayAndGroupError (_BaseZarrError ):
2020 _msg = (
2121 "Array and group metadata documents (.zarray and .zgroup) were both found in store "
22- "{0 !r} at path {1 !r}."
22+ "{!r} at path {!r}. "
2323 "Only one of these files may be present in a given directory / prefix. "
2424 "Remove the .zarray file, or the .zgroup file, or both."
2525 )
You can’t perform that action at this time.
0 commit comments