Skip to content

Commit 1c0cd02

Browse files
committed
fix FastParquetImpl
1 parent a092ede commit 1c0cd02

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pandas/io/parquet.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -352,6 +352,7 @@ def read(
352352
filters=None,
353353
storage_options: StorageOptions | None = None,
354354
filesystem=None,
355+
to_pandas_kwargs: dict | None = None,
355356
**kwargs,
356357
) -> DataFrame:
357358
parquet_kwargs: dict[str, Any] = {}
@@ -367,6 +368,10 @@ def read(
367368
raise NotImplementedError(
368369
"filesystem is not implemented for the fastparquet engine."
369370
)
371+
if to_pandas_kwargs is not None:
372+
raise NotImplementedError(
373+
"to_pandas_kwargs is not implemented for the fastparquet engine."
374+
)
370375
path = stringify_path(path)
371376
handles = None
372377
if is_fsspec_url(path):

0 commit comments

Comments
 (0)