From 30babf2d69206d5f10fd8ae1a1bc4e5812bedace Mon Sep 17 00:00:00 2001 From: benex Date: Mon, 18 Nov 2024 17:09:56 +0300 Subject: [PATCH] feat(cli): alert the user that the cli is checking for updates --- fastanime/cli/__init__.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/fastanime/cli/__init__.py b/fastanime/cli/__init__.py index 6bc27cf..21c9159 100644 --- a/fastanime/cli/__init__.py +++ b/fastanime/cli/__init__.py @@ -229,6 +229,11 @@ def run_cli( if ctx.obj.check_for_updates: from .app_updater import check_for_updates + print("Checking for updates...") + print("So you can enjoy the latest features and bug fixes") + print( + "You can disable this by setting check_for_updates to False in the config" + ) is_latest, github_release_data = check_for_updates() if not is_latest: from rich.console import Console