Skip to content

Commit 0a2d1fe

Browse files
committed
ignore temporary re-exports
1 parent d050c65 commit 0a2d1fe

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

narwhals/_arrow/dataframe.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@
4646
from narwhals._arrow.namespace import ArrowNamespace
4747
from narwhals._arrow.series import ArrowSeries
4848
from narwhals._arrow.typing import ArrowChunkedArray
49-
from narwhals._arrow.typing import Indices
50-
from narwhals._arrow.typing import Mask
51-
from narwhals._arrow.typing import Order
49+
from narwhals._arrow.typing import Indices # type: ignore[attr-defined]
50+
from narwhals._arrow.typing import Mask # type: ignore[attr-defined]
51+
from narwhals._arrow.typing import Order # type: ignore[attr-defined]
5252
from narwhals.dtypes import DType
5353
from narwhals.typing import SizeUnit
5454
from narwhals.typing import _1DArray

narwhals/_arrow/series.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@
4444
from narwhals._arrow.typing import ArrowArray
4545
from narwhals._arrow.typing import ArrowChunkedArray
4646
from narwhals._arrow.typing import Incomplete
47-
from narwhals._arrow.typing import Indices
47+
from narwhals._arrow.typing import Indices # type: ignore[attr-defined]
4848
from narwhals._arrow.typing import NullPlacement
49-
from narwhals._arrow.typing import Order
49+
from narwhals._arrow.typing import Order # type: ignore[attr-defined]
5050
from narwhals._arrow.typing import TieBreaker
5151
from narwhals._arrow.typing import _AsPyType
5252
from narwhals._arrow.typing import _BasicDataType

0 commit comments

Comments
 (0)