update to 1 day chunk

This commit is contained in:
ggman12
2026-02-01 22:31:49 -05:00
parent 6a9f81a8bf
commit 2f41c6e954
@@ -22,9 +22,9 @@ jobs:
ranges = []
current = start
# Process in 7-day chunks (weekly)
# Process in 1-day chunks (daily)
while current < end:
chunk_end = current + timedelta(days=7)
chunk_end = current + timedelta(days=1)
# Don't go past the end date
if chunk_end > end:
chunk_end = end