Skip to content

Commit 0f96dbe

Browse files
committed
CLN: run black on test files
1 parent 0479618 commit 0f96dbe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/reshape/test_concat.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2862,8 +2862,8 @@ def test_concat_frame_axis0_extension_dtypes():
28622862
@pytest.mark.parametrize("sort", [True, False])
28632863
def test_append_sort(sort):
28642864
# GH 35092. Check that DataFrame.append respects the sort argument.
2865-
df1 = pd.DataFrame(data={0: [1,2], 1: [3,4]})
2866-
df2 = pd.DataFrame(data={3: [1,2], 2: [3,4]})
2865+
df1 = pd.DataFrame(data={0: [1, 2], 1: [3, 4]})
2866+
df2 = pd.DataFrame(data={3: [1, 2], 2: [3, 4]})
28672867
cols = list(df1.columns) + list(df2.columns)
28682868
if sort:
28692869
cols.sort()

0 commit comments

Comments
 (0)