Skip to content

Commit

Permalink
[skip ci] fix night scheduling action - remove forced 48h scheduling
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaDodds authored Dec 14, 2024
1 parent aefaa7c commit 373a4bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/energy_broker.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def schedule_tasks():

# Grid Charging Scheduled Tasks
scheduler.every().day.at("09:30").do(set_charging_schedule, caller="TaskScheduler()", silent=True)
scheduler.every().day.at("21:30").do(set_charging_schedule, caller="TaskScheduler()", silent=True, schedule_type="48h")
scheduler.every().day.at("21:30").do(set_charging_schedule, caller="TaskScheduler()", silent=True)


def retrieve_latest_tibber_pricing():
Expand Down

0 comments on commit 373a4bf

Please sign in to comment.