From 3eebbe35c92d8900a8c9b422630d2a55f5768b89 Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Sat, 9 Mar 2024 10:16:41 +0100 Subject: [PATCH] Change option to lowercase --- toot/cli/tui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toot/cli/tui.py b/toot/cli/tui.py index c13b745..db37155 100644 --- a/toot/cli/tui.py +++ b/toot/cli/tui.py @@ -30,7 +30,7 @@ COLOR_OPTIONS = ", ".join(TUI_COLORS.keys()) help="Default visibility when posting new toots; overrides the server-side preference" ) @click.option( - "-S", "--always-show-sensitive", + "-s", "--always-show-sensitive", is_flag=True, help="Expand toots with content warnings automatically" )