Skip to content

Commit

Permalink
change from using args to kwargs
Browse files Browse the repository at this point in the history
  • Loading branch information
sgrtye committed Jan 11, 2025
1 parent ea2d179 commit e02b7d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apiserver/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ def schedule_yfinance_updates() -> None:
update_status,
"cron",
minute=i * interval,
args=(symbol),
kwargs={"symbols": symbol},
)

scheduler.start()
Expand Down

0 comments on commit e02b7d9

Please sign in to comment.