Skip to content

Commit 15adcd7

Browse files
committed
Reformatted argument lists as required by ruff.
1 parent 7304a48 commit 15adcd7

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

pandas/tests/generic/test_finalize.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,8 @@ def test_datetime_property(attr):
581581

582582

583583
@pytest.mark.parametrize(
584-
"attr", ["days", "seconds", "microseconds", "nanoseconds", "components"],
584+
"attr",
585+
["days", "seconds", "microseconds", "nanoseconds", "components"],
585586
)
586587
def test_timedelta_property(attr):
587588
s = pd.Series(pd.timedelta_range("2000", periods=4))
@@ -625,7 +626,8 @@ def test_categorical_accessor(method):
625626

626627

627628
@pytest.mark.parametrize(
628-
"obj", [pd.Series([0, 0]), pd.DataFrame({"A": [0, 1], "B": [1, 2]})],
629+
"obj",
630+
[pd.Series([0, 0]), pd.DataFrame({"A": [0, 1], "B": [1, 2]})],
629631
)
630632
@pytest.mark.parametrize(
631633
"method",
@@ -644,7 +646,8 @@ def test_groupby_finalize(obj, method):
644646

645647

646648
@pytest.mark.parametrize(
647-
"obj", [pd.Series([0, 0]), pd.DataFrame({"A": [0, 1], "B": [1, 2]})],
649+
"obj",
650+
[pd.Series([0, 0]), pd.DataFrame({"A": [0, 1], "B": [1, 2]})],
648651
)
649652
@pytest.mark.parametrize(
650653
"method",

0 commit comments

Comments
 (0)