Skip to content

Commit

Permalink
Merge pull request #118 from dtcarls/develop
Browse files Browse the repository at this point in the history
update defaults for new season
  • Loading branch information
dtcarls authored Jul 18, 2022
2 parents 8931b46 + 5bdd453 commit e1c973b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions ff_bot/ff_bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ def bot_main(function):
try:
year = int(os.environ["LEAGUE_YEAR"])
except KeyError:
year = 2021
year = 2022

try:
swid = os.environ["SWID"]
Expand Down Expand Up @@ -578,12 +578,12 @@ def bot_main(function):
try:
ff_start_date = os.environ["START_DATE"]
except KeyError:
ff_start_date = '2021-09-09'
ff_start_date = '2022-09-08'

try:
ff_end_date = os.environ["END_DATE"]
except KeyError:
ff_end_date = '2022-01-04'
ff_end_date = '2023-01-04'

try:
my_timezone = os.environ["TIMEZONE"]
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
flake8==3.3.0
apscheduler>=3.3.0
requests>=2.0.0,<3.0.0
espn_api>=0.18.3
espn_api>=0.20.0
datetime

0 comments on commit e1c973b

Please sign in to comment.