From 34e8b2abd19fadb4a56abcc2e433701259991209 Mon Sep 17 00:00:00 2001 From: Benex254 Date: Wed, 21 Aug 2024 19:45:57 +0300 Subject: [PATCH] feat: update download command --- fastanime/cli/commands/download.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fastanime/cli/commands/download.py b/fastanime/cli/commands/download.py index 7b6491a..29d5273 100644 --- a/fastanime/cli/commands/download.py +++ b/fastanime/cli/commands/download.py @@ -60,7 +60,7 @@ if TYPE_CHECKING: "-w", type=int, help="The amount of time to wait after downloading is complete before the screen is completely cleared", - default=10, + default=60, ) @click.option( "--prompt/--no-prompt", @@ -141,7 +141,7 @@ def download( search_results = search_results["results"] if not search_results: print("Nothing muches your search term") - exit_app(1) + continue search_results_ = { search_result["title"]: search_result for search_result in search_results }