Skip to content

Commit

Permalink
do not include oct2024g in list
Browse files Browse the repository at this point in the history
  • Loading branch information
tiffanychu90 committed Dec 27, 2024
1 parent bc12042 commit 75e9b22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _shared_utils/shared_utils/rt_dates.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
v for k, v in DATES.items() if k.endswith("2023") and not any(substring in k for substring in ["jan", "feb"])
]

y2024_dates = [v for k, v in DATES.items() if k.endswith("2024")]
y2024_dates = [v for k, v in DATES.items() if k.endswith("2024") and k not in ["oct2024g"]]


valid_weeks = ["apr2023", "oct2023", "apr2024", "oct2024"]
Expand Down

0 comments on commit 75e9b22

Please sign in to comment.