Skip to content

Commit a0c4e2b

Browse files
committed
reformatted test_concat.py
1 parent de1373e commit a0c4e2b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pandas/tests/dtypes/test_concat.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,9 @@ def test_concat_mismatched_categoricals_with_empty():
9494
def test_no_tz_concat_without_copy(_COPY_):
9595
# This will raise a ValueError issue if it fails
9696
# Regression test for issue 25257
97-
df = pd.DataFrame({'timestamp': [pd.Timestamp('2020-04-08 09:00:00.709949+0000',
98-
tz='UTC')], })
97+
df = pd.DataFrame(
98+
{"timestamp": [pd.Timestamp("2020-04-08 09:00:00.709949+0000", tz="UTC")],}
99+
)
99100
result = pd.concat([df], copy=_COPY_)
100101
expected = df
101102
tm.assert_frame_equal(result, expected)

0 commit comments

Comments
 (0)