From 8fada4500201723e22349526afa3cfe0a95c944a Mon Sep 17 00:00:00 2001 From: Dean MacGregor Date: Tue, 15 Oct 2024 09:17:35 -0400 Subject: [PATCH] fix_combine_chunks --- pyarrow-stubs/__lib_pxi/table.pyi | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pyarrow-stubs/__lib_pxi/table.pyi b/pyarrow-stubs/__lib_pxi/table.pyi index 684b8f2..1507931 100644 --- a/pyarrow-stubs/__lib_pxi/table.pyi +++ b/pyarrow-stubs/__lib_pxi/table.pyi @@ -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: ...