chore: don't use deprecated pandas timeperiod

This commit is contained in:
Matthias
2025-03-13 20:40:38 +01:00
parent cd435098bd
commit 74c837519a

View File

@@ -213,7 +213,7 @@ def _get_resample_from_period(period: str) -> str:
if period == "month":
return "1ME"
if period == "year":
return "1Y"
return "1YE"
raise ValueError(f"Period {period} is not supported.")