Skip to content

Commit

Permalink
Cleanup naming
Browse files Browse the repository at this point in the history
  • Loading branch information
NickM-27 committed Dec 12, 2024
1 parent 2b8ec3e commit 1c3d1c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frigate/events/cleanup.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,8 +256,8 @@ def expire_clips(self) -> list[str]:

events_to_update = []

for batch in query.iterator():
events_to_update.append(batch)
for event in query.iterator():
events_to_update.append(event)

if len(events_to_update) >= CHUNK_SIZE:
logger.debug(
Expand Down

0 comments on commit 1c3d1c2

Please sign in to comment.