Skip to content

Commit a611dad

Browse files
committed
Fix black bug from autocommit
1 parent e9d08c4 commit a611dad

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

pandas/tests/io/parser/test_python_parser_only.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -348,8 +348,6 @@ def test_decimal_and_exponential_erroneous(python_parser_only, thousands, value)
348348
1,1 {value}
349349
"""
350350
)
351-
result = python_parser_only.read_csv(
352-
data, "\t", decimal=",", thousands=thousands
353-
)
351+
result = python_parser_only.read_csv(data, "\t", decimal=",", thousands=thousands)
354352
expected = DataFrame({"a": [1.1], "b": [value]})
355353
tm.assert_frame_equal(result, expected)

0 commit comments

Comments
 (0)