Skip to content

Commit ecfafe0

Browse files
committed
fix pre commit issues
1 parent 366c341 commit ecfafe0

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

pandas/tests/plotting/test_series.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1007,15 +1007,14 @@ def test_bar_line_plot(self):
10071007
def test_tseries_plot_dst_transition(self):
10081008
"""
10091009
Test that plotting tz-aware timeseries works during DST fall-back transition.
1010-
#62936
10111010
"""
1012-
tind = pd.date_range(
1011+
# GH62936
1012+
tind = date_range(
10131013
"2025-10-26T00:00:00Z",
10141014
"2025-10-26T03:00:00Z",
10151015
freq="5min",
10161016
tz="utc",
10171017
).tz_convert("MET")[12:]
1018-
1018+
10191019
myts = DataFrame({"a": 1}, index=tind)
10201020
_check_plot_works(myts.plot)
1021-

0 commit comments

Comments
 (0)