Skip to content

Commit

Permalink
fix: from_pylist covariance (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
Flamefork authored Sep 9, 2024
1 parent be1a8a5 commit 0156025
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyarrow-stubs/__lib_pxi/table.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ from typing import (
Literal,
Mapping,
Self,
Sequence,
TypeAlias,
TypeVar,
overload,
Expand Down Expand Up @@ -411,7 +412,7 @@ class _Tabular(_PandasConvertible[pd.DataFrame], Generic[_ColumnT]):
@classmethod
def from_pylist(
cls,
mapping: list[Mapping[str, Any]],
mapping: Sequence[Mapping[str, Any]],
schema: Schema | None = None,
metadata: Mapping | None = None,
) -> Self: ...
Expand Down

0 comments on commit 0156025

Please sign in to comment.