Skip to content

Commit 2e782f9

Browse files
committed
conform to line length limit
1 parent ab7620d commit 2e782f9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/io/common.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,8 @@ class BytesZipFile(zipfile.ZipFile, BytesIO): # type: ignore
420420
bytes strings into a member of the archive.
421421
"""
422422
# GH 17778
423-
def __init__(self, file, mode, compression=zipfile.ZIP_DEFLATED, arcname=None, **kwargs):
423+
def __init__(self, file, mode, compression=zipfile.ZIP_DEFLATED,
424+
arcname=None, **kwargs):
424425
if mode in ['wb', 'rb']:
425426
mode = mode.replace('b', '')
426427
self.arcname = arcname

0 commit comments

Comments
 (0)