Skip to content

Commit

Permalink
fix on_start()
Browse files Browse the repository at this point in the history
  • Loading branch information
adbenitez committed Mar 22, 2024
1 parent be94a5e commit f54f6cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion feedsbot/hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def on_start(bot: Bot, args: Namespace) -> None:
init(f"sqlite:///{config_dir / 'sqlite.db'}")
Thread(
target=check_feeds,
args=(bot, args.interval, args.parallel, config_dir),
args=(bot, args.interval, args.parallel),
daemon=True,
).start()

Expand Down

0 comments on commit f54f6cd

Please sign in to comment.