Skip to content

Commit

Permalink
fix: wrong condition on skipping data!
Browse files Browse the repository at this point in the history
  • Loading branch information
amindadgar committed Nov 6, 2024
1 parent 07d6ca7 commit d54c82a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def summarize_daily(
# per each daily messages
for day, msgs in messages.items():
# if no messages were available
if msgs:
if not msgs:
continue

start_date = day.strftime("%d/%m/%Y")
Expand Down

0 comments on commit d54c82a

Please sign in to comment.