mirror of
https://github.com/PlaneQuery/OpenAirframes.git
synced 2026-06-08 14:13:57 +02:00
update to 1 day chunk
This commit is contained in:
@@ -22,9 +22,9 @@ jobs:
|
|||||||
ranges = []
|
ranges = []
|
||||||
current = start
|
current = start
|
||||||
|
|
||||||
# Process in 7-day chunks (weekly)
|
# Process in 1-day chunks (daily)
|
||||||
while current < end:
|
while current < end:
|
||||||
chunk_end = current + timedelta(days=7)
|
chunk_end = current + timedelta(days=1)
|
||||||
# Don't go past the end date
|
# Don't go past the end date
|
||||||
if chunk_end > end:
|
if chunk_end > end:
|
||||||
chunk_end = end
|
chunk_end = end
|
||||||
|
|||||||
Reference in New Issue
Block a user