Skip to content

Commit

Permalink
fix: wrong arg order
Browse files Browse the repository at this point in the history
  • Loading branch information
sgratzl committed Oct 21, 2023
1 parent 7e64360 commit 9052743
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion slack_cleaner2/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def main():
cli main entry
"""
args = _args()
slack = SlackCleaner(args.token, args.log, args.rate)
slack = SlackCleaner(token = args.token, log_to_file=args.log, sleep_for=args.rate)

if args.info:
_show_infos(slack)
Expand Down

0 comments on commit 9052743

Please sign in to comment.