Skip to content

Commit dd19672

Browse files
committed
Update test_concat.py
1 parent cadfb63 commit dd19672

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/reshape/concat/test_concat.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,7 @@ def test_concat_posargs_deprecation():
701701

702702

703703
@pytest.mark.parametrize("data", [Series(data=[1, 2]),
704-
DataFrame(data={"col1": [1, 2],}),
704+
DataFrame(data={"col1": [1, 2], }),
705705
DataFrame(),
706706
Series()])
707707
def test_concat_drop_attrs(data):
@@ -715,7 +715,7 @@ def test_concat_drop_attrs(data):
715715

716716

717717
@pytest.mark.parametrize("data", [Series(data=[1, 2]),
718-
DataFrame(data={"col1": [1, 2],}),
718+
DataFrame(data={"col1": [1, 2], }),
719719
DataFrame(),
720720
Series()])
721721
def test_concat_retain_attrs(data):

0 commit comments

Comments
 (0)