Skip to content

Commit

Permalink
Update rollerblades.py
Browse files Browse the repository at this point in the history
  • Loading branch information
OcifferAction authored Nov 17, 2022
1 parent e716df7 commit 1a2da5a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions rollerblades.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
AUGUST = int(os.getenv('AUGUST', 1))
SEPTEMBER = int(os.getenv('SEPTEMBER', 1))
OCTOBER = int(os.getenv('OCTOBER', 1))
NOVEMBER = int(os.getenv('NOVEMBER', 1))
DECEMBER = int(os.getenv('DECEMBER', 1))
DEBUG = int(os.getenv('DEBUG', 0))

Expand Down Expand Up @@ -123,7 +122,7 @@ def main() -> None:
elif current_month == "10" and OCTOBER == 1 and my_prerolls['SPECIAL_MONTHS']['October'] is not None:
# If it's October
new_preroll = my_prerolls['SPECIAL_MONTHS']['October']
elif current_month == "11" and NOVEMBER == 1 and my_prerolls['SPECIAL_MONTHS'] is not None:
elif current_month == "11" and NOVEMBER == 1 and (my_prerolls['SPECIAL_MONTHS']['November']) is not None:
# If it's November
new_preroll = my_prerolls['SPECIAL_MONTHS']['November']
elif current_month == "12" and DECEMBER == 1:
Expand Down

0 comments on commit 1a2da5a

Please sign in to comment.