Skip to content

Commit 4eae370

Browse files
SarthakSarthak
Sarthak
authored and
Sarthak
committed
fix for both black versions
1 parent 73c1d32 commit 4eae370

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pandas/io/sas/sas_xport.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ class XportReader(ReaderBase, abc.Iterator):
244244
__doc__ = _xport_reader_doc
245245

246246
def __init__(
247-
self, filepath_or_buffer, index=None, encoding="ISO-8859-1", chunksize=None,
247+
self, filepath_or_buffer, index=None, encoding="ISO-8859-1", chunksize=None
248248
):
249249

250250
self._encoding = encoding

pandas/io/stata.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1980,7 +1980,7 @@ def _open_file_binary_write(
19801980
compression_typ = infer_compression(fname, compression_typ)
19811981
compression = dict(compression_args, method=compression_typ)
19821982
path_or_buf, _, compression, _ = get_filepath_or_buffer(
1983-
fname, mode="wb", compression=compression, storage_options=storage_options,
1983+
fname, mode="wb", compression=compression, storage_options=storage_options
19841984
)
19851985
f, _ = get_handle(path_or_buf, "wb", compression=compression, is_text=False)
19861986
return f, True, compression

0 commit comments

Comments
 (0)