From dffc43ec1ffb3e6081fe5f879d553333ffaea129 Mon Sep 17 00:00:00 2001 From: Becky Jackson Date: Mon, 5 Jul 2021 16:23:58 -0700 Subject: [PATCH] Add keywords to help message for clear (#137) --- cogs/cli.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cogs/cli.py b/cogs/cli.py index 3fc29f1..c76b49b 100644 --- a/cogs/cli.py +++ b/cogs/cli.py @@ -116,7 +116,9 @@ def main(): usage="cogs clear KEYWORD [SHEET ...]", ) sp.set_defaults(func=run_clear) - sp.add_argument("keyword", help="Specify what to clear from the sheet(s)") + sp.add_argument( + "keyword", help="Specify what to clear from the sheet(s): format, notes, validation, all" + ) sp.add_argument("sheets", nargs="*", help="Titles of sheets to clear from", default=[]) # ------------------------------- connect -------------------------------