Skip to content

Commit 0fcf3c2

Browse files
committed
reformat long lines
1 parent 507f2f9 commit 0fcf3c2

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

pandas/tests/io/parser/test_na_values.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -818,8 +818,12 @@ def test_bool_and_nan_to_float(all_parsers):
818818
@pytest.mark.parametrize(
819819
"na_values, expected_result, test_id",
820820
[
821-
({"A": [-99.0, -99]}, DataFrame({"A": [np.nan, np.nan, np.nan, np.nan]}), "float_first"),
822-
({"A": [-99, -99.0]}, DataFrame({"A": [np.nan, np.nan, np.nan, np.nan]}), "int_first"),
821+
({"A": [-99.0, -99]},
822+
DataFrame({"A": [np.nan, np.nan, np.nan, np.nan]}),
823+
"float_first"),
824+
({"A": [-99, -99.0]},
825+
DataFrame({"A": [np.nan, np.nan, np.nan, np.nan]}),
826+
"int_first"),
823827
],
824828
ids=["float_first", "int_first"]
825829
)

0 commit comments

Comments
 (0)