diff options
author | V3n3RiX <venerix@koprulu.sector> | 2024-10-06 00:39:48 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2024-10-06 00:39:48 +0100 |
commit | 000419569794cf93adac725cbf3dc521378c9a28 (patch) | |
tree | b3c82d6743450599e729f6a0b3c392c6df2f454a | |
parent | 46a8e7d1d6ad459c78616c9ac076d30b09fb87c8 (diff) |
this is redundant, sisyphus update will deliver the same information automaticallyHEADv6.2410.0master
-rwxr-xr-x | src/frontend/cli/sisyphus-cli.py | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/src/frontend/cli/sisyphus-cli.py b/src/frontend/cli/sisyphus-cli.py index 83818e8..1aa8aa8 100755 --- a/src/frontend/cli/sisyphus-cli.py +++ b/src/frontend/cli/sisyphus-cli.py @@ -12,7 +12,7 @@ getNews = typer.Typer() app.add_typer(mirrorSetup, name="mirror", help='List/Set the active binhost (binary repository) mirror.') app.add_typer(getNews, name="news", - help='Check/List/Mark Read/Mark Unread news articles.') + help='List/Mark Read/Mark Unread news articles.') @app.callback() @@ -349,18 +349,6 @@ def setmirror(index: int): sisyphus.setmirror.setActive(index) -@getNews.command("check") -def checknews(): - """ - Check for unread news articles,\n - \n - * Example:\n - sisyphus news check\n - """ - unread_count = sisyphus.checkenv.news() - print(f"\nThere are {unread_count} unread news article(s).\n") - - @getNews.command("list") def listnews(): """ |