Skip to content

Commit d191507

Browse files
fix pep8
1 parent 265bd60 commit d191507

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

pandas/tests/io/formats/test_format.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2385,10 +2385,8 @@ def test_to_string_header(self):
23852385
(['.1', '1'], '.1\n 1'),
23862386
(['10', '-10'], ' 10\n-10')
23872387
])
2388-
def test_to_string_index_false_corner_case(self,
2389-
input_series,
2390-
expected):
2391-
s = pd.Series(input_series).to_string(index=False)
2388+
def test_to_string_index_false_corner_case(self, inputs, expected):
2389+
s = pd.Series(inputs).to_string(index=False)
23922390
assert s == expected
23932391

23942392

0 commit comments

Comments
 (0)