Skip to content

Commit d9b52f0

Browse files
committed
Removed trailing commas.
1 parent c5f31ac commit d9b52f0

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

pandas/tests/generic/test_finalize.py

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

582582

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

627626

628627
@pytest.mark.parametrize(
629-
"obj",
630-
[pd.Series([0, 0]), pd.DataFrame({"A": [0, 1], "B": [1, 2]})],
628+
"obj", [pd.Series([0, 0]), pd.DataFrame({"A": [0, 1], "B": [1, 2]})]
631629
)
632630
@pytest.mark.parametrize(
633631
"method",
@@ -646,8 +644,7 @@ def test_groupby_finalize(obj, method):
646644

647645

648646
@pytest.mark.parametrize(
649-
"obj",
650-
[pd.Series([0, 0]), pd.DataFrame({"A": [0, 1], "B": [1, 2]})],
647+
"obj", [pd.Series([0, 0]), pd.DataFrame({"A": [0, 1], "B": [1, 2]})]
651648
)
652649
@pytest.mark.parametrize(
653650
"method",

0 commit comments

Comments
 (0)