Skip to content

Commit

Permalink
fix_combine_chunks
Browse files Browse the repository at this point in the history
  • Loading branch information
deanm0000 committed Oct 15, 2024
1 parent 05a033a commit 8fada45
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions pyarrow-stubs/__lib_pxi/table.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,7 @@ class ChunkedArray(_PandasConvertible[pd.Series], Generic[_Scalar_CoT]):
) -> ChunkedArray[Scalar[_CastAs]]: ...
def dictionary_encode(self, null_encoding: NullEncoding = "mask") -> Self: ...
def flatten(self, memory_pool: MemoryPool | None = None) -> list[ChunkedArray[Any]]: ...
def combine_chunks(
self, memory_pool: MemoryPool | None = None
) -> ChunkedArray[_Scalar_CoT]: ...
def combine_chunks(self, memory_pool: MemoryPool | None = None) -> Array[_Scalar_CoT]: ...
def unique(self) -> ChunkedArray[_Scalar_CoT]: ...
def value_counts(self) -> StructArray: ...
def slice(self, offset: int = 0, length: int | None = None) -> Self: ...
Expand Down

0 comments on commit 8fada45

Please sign in to comment.