Skip to content

Commit b4fe17c

Browse files
committed
More typey lint
1 parent 13e4e58 commit b4fe17c

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

Tests/test_arro3.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,12 @@
1717
TYPE_CHECKING = False
1818
if TYPE_CHECKING:
1919
from arro3 import compute # type: ignore [import-not-found]
20-
21-
# type: ignore [import-not-found]
22-
from arro3.core import Array, DataType, Field, fixed_size_list_array
20+
from arro3.core import ( # type: ignore [import-not-found]
21+
Array,
22+
DataType,
23+
Field,
24+
fixed_size_list_array,
25+
)
2326
else:
2427
arro3 = pytest.importorskip("arro3", reason="Arro3 not installed")
2528
from arro3 import compute

Tests/test_nanoarrow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
TYPE_CHECKING = False
1818
if TYPE_CHECKING:
19-
import nanoarrow # type: ignore [import-untyped]
19+
import nanoarrow # type: ignore [import-not-found]
2020
else:
2121
nanoarrow = pytest.importorskip("nanoarrow", reason="Nanoarrow not installed")
2222

0 commit comments

Comments
 (0)