Skip to content

Commit d771799

Browse files
committed
remove warning about vlen-utf8 codec now that a spec is published
1 parent 2420f9e commit d771799

1 file changed

Lines changed: 0 additions & 9 deletions

File tree

src/zarr/codecs/vlen_utf8.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,6 @@
2525

2626
@dataclass(frozen=True)
2727
class VLenUTF8Codec(ArrayBytesCodec):
28-
def __init__(self) -> None:
29-
warn(
30-
"The codec `vlen-utf8` is currently not part in the Zarr format 3 specification. It "
31-
"may not be supported by other zarr implementations and may change in the future.",
32-
category=UserWarning,
33-
stacklevel=2,
34-
)
35-
super().__init__()
36-
3728
@classmethod
3829
def from_dict(cls, data: dict[str, JSON]) -> Self:
3930
_, configuration_parsed = parse_named_configuration(

0 commit comments

Comments
 (0)