Skip to content

Commit 3f90271

Browse files
Apply ruff/flake8-type-checking rule TCH005
TCH005 Found empty type-checking block
1 parent 37315a7 commit 3f90271

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/zarr/core/chunk_key_encodings.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from abc import abstractmethod
44
from dataclasses import dataclass
5-
from typing import TYPE_CHECKING, Literal, cast
5+
from typing import Literal, cast
66

77
from zarr.abc.metadata import Metadata
88
from zarr.core.common import (
@@ -11,9 +11,6 @@
1111
parse_named_configuration,
1212
)
1313

14-
if TYPE_CHECKING:
15-
pass
16-
1714
SeparatorLiteral = Literal[".", "/"]
1815

1916

0 commit comments

Comments
 (0)