Skip to content

Commit d4703fd

Browse files
committed
fix is_subperiod function after pandas has moved it to another module (pandas commit #17746)
1 parent b8ce251 commit d4703fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

timeboard/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
try:
1616
_pandas_is_subperiod = pd.tseries.frequencies.is_subperiod
1717
except AttributeError:
18-
_pandas_is_subperiod = pandas._libs.tslibs.frequencies.is_subperiod
18+
_pandas_is_subperiod = pd._libs.tslibs.frequencies.is_subperiod
1919

2020
# # imports for timing the performance;
2121
# # there are also commented lines in the code referring to timeit or timers

0 commit comments

Comments
 (0)