Fix weekly resamples to ensure they're on monday.

This commit is contained in:
Matthias
2024-01-23 19:21:00 +01:00
parent 34ac2dc9ae
commit 1ae3b1e622
4 changed files with 8 additions and 5 deletions

View File

@@ -131,7 +131,7 @@ def test_timeframe_to_msecs():
("10m", '600s'),
("1h", '3600s'),
("1d", '86400s'),
("1w", '604800s'),
("1w", '1W-MON'),
("1M", '1MS'),
("1y", '1YS'),
])