Skip to content

Commit 7891800

Browse files
committed
tidy up imports
1 parent 210759f commit 7891800

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/test_regression/test_v3_dtype_regression.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
from __future__ import annotations
22

33
from pathlib import Path
4+
from typing import TYPE_CHECKING
45

56
import numpy as np
67
import pytest
78

89
import zarr
9-
from zarr.types import ArrayV3
1010

1111
from .conftest import (
1212
blosc_cases,
@@ -16,6 +16,9 @@
1616
vlen_string_cases,
1717
)
1818

19+
if TYPE_CHECKING:
20+
from zarr.types import ArrayV3
21+
1922
array_cases = vlen_string_cases + blosc_cases + gzip_cases
2023

2124

0 commit comments

Comments
 (0)