We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de1373e commit a0c4e2bCopy full SHA for a0c4e2b
pandas/tests/dtypes/test_concat.py
@@ -94,8 +94,9 @@ def test_concat_mismatched_categoricals_with_empty():
94
def test_no_tz_concat_without_copy(_COPY_):
95
# This will raise a ValueError issue if it fails
96
# Regression test for issue 25257
97
- df = pd.DataFrame({'timestamp': [pd.Timestamp('2020-04-08 09:00:00.709949+0000',
98
- tz='UTC')], })
+ df = pd.DataFrame(
+ {"timestamp": [pd.Timestamp("2020-04-08 09:00:00.709949+0000", tz="UTC")],}
99
+ )
100
result = pd.concat([df], copy=_COPY_)
101
expected = df
102
tm.assert_frame_equal(result, expected)
0 commit comments