Skip to content

Commit

Permalink
fix dec excess
Browse files Browse the repository at this point in the history
  • Loading branch information
djay committed Jun 17, 2024
1 parent 79e3ce7 commit 91959fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion covid_data_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -806,7 +806,7 @@ def excess_deaths():
for month in range(1, 13):
if done:
break
if not (year == 2023 and month == 11) and counts.Age.get((year, month), 0) >= 77 * 102 * 2 and sums.Age.get((year, month), 0) > 2000:
if not (year == 2023 and month == 12) and counts.Age.get((year, month), 0) >= 77 * 102 * 2 and sums.Age.get((year, month), 0) > 2000:
continue
date = datetime.datetime(year=year, month=month, day=1)
logger.info("Excess Deaths: missing {}-{}", year, month)
Expand Down

5 comments on commit 91959fa

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.