We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 207cc76 commit b7d20b0Copy full SHA for b7d20b0
pandas/tests/scalar/timestamp/test_timestamp.py
@@ -1099,8 +1099,8 @@ def test_constructor_before_dst_switch():
1099
# Make sure that calling Timestamp constructor
1100
# on time just before DST switch doesn't lead to
1101
# nonexistent time
1102
- epoch = 1552211999999999872
1103
- ts = Timestamp(epoch, tz='dateutil/US/Pacific')
+ epoch = 1552211999999999872
+ ts = Timestamp(epoch, tz="dateutil/US/Pacific")
1104
expected = timedelta(seconds=0)
1105
result = ts.tz.dst(ts)
1106
assert result == expected
0 commit comments