Skip to content

Commit 4051a05

Browse files
committed
Move upath import out of type checking
1 parent 3214ad6 commit 4051a05

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/zarr/store/remote.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22

33
from typing import TYPE_CHECKING, Any
44

5+
from upath import UPath
6+
57
from zarr.abc.store import Store
68
from zarr.buffer import Buffer, BufferPrototype
79
from zarr.common import OpenMode
810
from zarr.store.core import _dereference_path
911

1012
if TYPE_CHECKING:
1113
from fsspec.asyn import AsyncFileSystem
12-
from upath import UPath
1314

1415

1516
class RemoteStore(Store):

0 commit comments

Comments
 (0)