fix for issue #42

This commit is contained in:
Kashif Rasul
2021-05-12 09:38:49 +02:00
committed by GitHub
parent 4c066aa6cb
commit 821df81e2e
+1 -1
View File
@@ -17,7 +17,7 @@ def lags_for_fourier_time_features_from_frequency(
lags = [[1, 2]]
elif granularity == "H":
lags = [[1, 24, 168]]
elif granularity == "min":
elif granularity in ("T", "min"):
lags = [[1, 4, 12, 24, 48]]
else:
lags = [[1]]