Skip to content

Commit e744716

Browse files
fix linting error
1 parent 2bbcf34 commit e744716

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/io/formats/csvs.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ def __init__(self, obj, path_or_buf=None, sep=",", na_rep='',
5050

5151
self.header = header
5252
self.index = index
53-
# if index label is not explicitly called, index label is True if header
54-
# or index is not False; otherwise, index label is set to False
53+
# if index label is not explicitly called, index label is True if
54+
# header or index is not False; otherwise, index label is set to False
5555
if index_label is None:
5656
if self.header is False or self.header is None or not self.index:
5757
self.index_label = False

0 commit comments

Comments
 (0)