We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59a2d1c commit aecf0e0Copy full SHA for aecf0e0
awswrangler/s3/_read.py
@@ -170,7 +170,7 @@ def _read_text_chunksize(
170
pandas_kwargs["compression"] = infer_compression(path, compression="infer")
171
mode: str = "r" if pandas_kwargs.get("compression") is None else "rb"
172
with fs.open(path, mode) as f:
173
- reader: pandas.io.parsers.TextFileReader = parser_func(f, chunksize=chunksize, **pandas_args)
+ reader: pandas.io.parsers.TextFileReader = parser_func(f, chunksize=chunksize, **pandas_kwargs)
174
for df in reader:
175
if dataset is True:
176
for column_name, value in partitions.items():
0 commit comments