Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add type property to Array #112

Merged
merged 2 commits into from
Oct 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions pyarrow-stubs/__lib_pxi/array.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -1056,6 +1056,8 @@ class Array(_PandasConvertible[pd.Series], Generic[_Scalar_CoT]):
) -> Array[Scalar[_CastAs]]: ...
def view(self, target_type: _CastAs) -> Array[Scalar[_CastAs]]: ...
def sum(self, **kwargs) -> _Scalar_CoT: ...
@property
def type(self: Array[Scalar[_DataType_CoT]]) -> _DataType_CoT: ...
def unique(self) -> Self: ...
def dictionary_encode(self, null_encoding: str = "mask") -> DictionaryArray: ...
@overload
Expand Down