From 07beba8c680b595857244046c2186b75b53274eb Mon Sep 17 00:00:00 2001 From: Sandra Snan Date: Sat, 6 Apr 2024 20:26:33 +0200 Subject: [PATCH] Fix --clear text issue It's a click flag. --- toot/cli/timelines.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/toot/cli/timelines.py b/toot/cli/timelines.py index aac2c45..aee83de 100644 --- a/toot/cli/timelines.py +++ b/toot/cli/timelines.py @@ -111,7 +111,10 @@ def bookmarks( @cli.command() -@click.option("--clear", help="Dismiss all notifications and exit") +@click.option( + "--clear", is_flag=True, + help="Dismiss all notifications and exit" +) @click.option( "--reverse", "-r", is_flag=True, help="Reverse the order of the shown notifications (newest on top)"