Skip to content

Commit 1d680be

Browse files
committed
split line that was too long
1 parent 1e38672 commit 1d680be

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/io/parser/common.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,8 @@ def test_csv_index_col_and_nrows(self):
244244
2,2,3,4
245245
3,3,4,5
246246
"""
247-
out = self.read_csv(StringIO(data), low_memory=True, index_col=0, nrows=0)
247+
out = self.read_csv(StringIO(data), low_memory=True, index_col=0,
248+
nrows=0)
248249
tm.assert_index_equal(out.columns, pd.Index(['A', 'B', 'C']))
249250
assert out.empty
250251

0 commit comments

Comments
 (0)