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 9fcd5a5 commit 435ef8dCopy full SHA for 435ef8d
src/hats/io/file_io/file_io.py
@@ -118,7 +118,7 @@ def load_csv_to_pandas_generator(
118
pandas dataframe loaded from CSV
119
"""
120
file_pointer = get_upath(file_pointer)
121
- with file_pointer.open(mode="rb", compression=compression, **kwargs) as csv_file:
+ with file_pointer.open(mode="rb", compression=compression) as csv_file:
122
with pd.read_csv(csv_file, chunksize=chunksize, **kwargs) as reader:
123
yield from reader
124
0 commit comments