From 4769de7227132f26254d405254c4c4bca8771930 Mon Sep 17 00:00:00 2001 From: "Sadie L. Bartholomew" Date: Mon, 26 Aug 2024 22:48:01 +0100 Subject: [PATCH] Make clearer CLI description for --no-colour option --- cats/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cats/__init__.py b/cats/__init__.py index 45cf536..edc7e5b 100644 --- a/cats/__init__.py +++ b/cats/__init__.py @@ -187,7 +187,7 @@ def positive_integer(string): "-n", "--no-colour", # or could use American spelling like many other CLIs? action="store_true", - help="Turn off terminal colouring to highlight key information", + help="Disable all terminal output colouring", ) return parser