From b05f7f164031c6cf1f07b78a3f9fa8564142eb28 Mon Sep 17 00:00:00 2001 From: Benex254 Date: Sun, 18 Aug 2024 12:34:18 +0300 Subject: [PATCH] feat(cli): add help for download and search command --- fastanime/cli/commands/download.py | 1 + fastanime/cli/commands/search.py | 1 + 2 files changed, 2 insertions(+) diff --git a/fastanime/cli/commands/download.py b/fastanime/cli/commands/download.py index 7f2851a..4c5e64d 100644 --- a/fastanime/cli/commands/download.py +++ b/fastanime/cli/commands/download.py @@ -20,6 +20,7 @@ if TYPE_CHECKING: required=True, shell_complete=anime_titles_shell_complete, multiple=True, + help="Specify which anime to download", ) @click.option( "--episode-range", diff --git a/fastanime/cli/commands/search.py b/fastanime/cli/commands/search.py index 52abb42..a90fc64 100644 --- a/fastanime/cli/commands/search.py +++ b/fastanime/cli/commands/search.py @@ -15,6 +15,7 @@ from ..completion_functions import anime_titles_shell_complete required=True, shell_complete=anime_titles_shell_complete, multiple=True, + help="Specify which anime to download", ) @click.option( "--episode-range",