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 fef23b9 commit 1ec1f7dCopy full SHA for 1ec1f7d
pandas/io/common.py
@@ -405,9 +405,7 @@ def get_handle(
405
if is_path:
406
f = gzip.open(path_or_buf, mode, **compression_args) # type: ignore
407
else:
408
- f = gzip.GzipFile(
409
- fileobj=path_or_buf, **compression_args
410
- ) # type: ignore
+ f = gzip.GzipFile(fileobj=path_or_buf, **compression_args) # type: ignore
411
412
# BZ Compression
413
elif compression == "bz2":
0 commit comments