Skip to content

Commit

Permalink
fix wrong pandas freqstr for py38 (#2178)
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisbader authored Jan 21, 2024
1 parent 9cb1a56 commit 0520c43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion darts/dataprocessing/transformers/midas.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def __init__(
),
logger=logger,
)
self._low_freq = low_freq
self._low_freq = pd.tseries.frequencies.to_offset(low_freq).freqstr
self._strip = strip
self._drop_static_covariates = drop_static_covariates
self._sep = "_midas_"
Expand Down

0 comments on commit 0520c43

Please sign in to comment.