Skip to content

Commit 2539772

Browse files
committed
CLN: run black pandas
1 parent 955b35f commit 2539772

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/scalar/timestamp/test_timestamp.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1082,12 +1082,13 @@ def test_dt_subclass_add_timedelta(lh, rh):
10821082
expected = SubDatetime(2000, 1, 1, 1)
10831083
assert result == expected
10841084

1085+
10851086
def test_constructor_ambigous_dst():
10861087
# GH 24329
10871088
# Make sure that calling Timestamp constructor
10881089
# on Timestamp created from ambiguous time
10891090
# doesn't change Timestamp.value
1090-
ts = Timestamp(1382835600000000000, tz='dateutil/Europe/London')
1091+
ts = Timestamp(1382835600000000000, tz="dateutil/Europe/London")
10911092
expected = ts.value
10921093
result = Timestamp(ts).value
10931094
assert result == expected

0 commit comments

Comments
 (0)