File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
vortex-python/python/vortex Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 11# SPDX-License-Identifier: Apache-2.0
22# SPDX-FileCopyrightText: Copyright the Vortex contributors
3- from typing import TypeAlias , Union
3+ from typing import TypeAlias , Union # pyright: ignore[reportDeprecated]
44
55import pyarrow as pa
66
1111# TypeAliases do not support __doc__.
1212IntoProjection : TypeAlias = Expr | list [str ] | None
1313IntoArrayIterator : TypeAlias = Array | ArrayIterator | pa .Table | pa .RecordBatchReader
14- IntoArray : TypeAlias = Union [Array , "pa.Array[pa.Scalar[pa.DataType]]" , pa .Table ]
14+ IntoArray : TypeAlias = Union [Array , "pa.Array[pa.Scalar[pa.DataType]]" , pa .Table ] # pyright: ignore[reportDeprecated]
1515
1616# If you make an intersphinx reference to pyarrow.RecordBatchReader in the return type of a function
1717# *and also* use the IntoProjection type alias in a parameter type, Sphinx thinks the type alias
You can’t perform that action at this time.
0 commit comments