From 37c758f3886637b4c7539af891399fa7c5c56cc9 Mon Sep 17 00:00:00 2001 From: missytake Date: Sat, 7 Oct 2023 21:42:31 +0200 Subject: [PATCH] add help text for 'teams-bot run' cli command --- src/teams_bot/cli.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/teams_bot/cli.py b/src/teams_bot/cli.py index 744a29e..e2a139a 100644 --- a/src/teams_bot/cli.py +++ b/src/teams_bot/cli.py @@ -111,6 +111,7 @@ def init(ctx, email: str, password: str, db: str, verbose: int): ) @click.pass_context def run(ctx, db: str, verbose: int): + """Run the bot, so it relays messages between the crew and the outside.""" set_log_level(verbose, db) ac = deltachat.Account(db)