diff options
author | V3n3RiX <venerix@koprulu.sector> | 2024-10-05 19:58:51 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2024-10-05 19:58:51 +0100 |
commit | ec51bc4be021116013a56a55fc6eb804887c2034 (patch) | |
tree | 8f8b7817ed24d3393a3bbd1d4972ca314a7397dc /src/backend | |
parent | 3686bbcd8d465fdd79782d3da8285930b679db02 (diff) |
make checking news more portable
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/getnews.py | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/src/backend/getnews.py b/src/backend/getnews.py index ce56df4..b2d2978 100644 --- a/src/backend/getnews.py +++ b/src/backend/getnews.py @@ -42,7 +42,8 @@ def mark_read(article_nr): r_news_index = ld_r_news() if article_index in r_news_index: - print(f"\nArticle {sisyphus.getclr.green}{article_nr}{sisyphus.getclr.reset} is already marked as {sisyphus.getclr.green}read{sisyphus.getclr.reset}.") + print( + f"\nArticle {sisyphus.getclr.green}{article_nr}{sisyphus.getclr.reset} is already marked as {sisyphus.getclr.green}read{sisyphus.getclr.reset}.") else: r_news_index.append(article_index) save_r_news(r_news_index) @@ -61,7 +62,8 @@ def mark_unread(article_nr): r_news_index = ld_r_news() if article_index not in r_news_index: - print(f"\nArticle {sisyphus.getclr.green}{article_nr}{sisyphus.getclr.reset} is already marked as {sisyphus.getclr.green}unread{sisyphus.getclr.reset}.") + print( + f"\nArticle {sisyphus.getclr.green}{article_nr}{sisyphus.getclr.reset} is already marked as {sisyphus.getclr.green}unread{sisyphus.getclr.reset}.") else: r_news_index.remove(article_index) save_r_news(r_news_index) @@ -88,12 +90,7 @@ def check_n_news(): unread_count = len(n_news) - len(r_news_index) - if unread_count > 0: - print( - f"\nThere are {sisyphus.getclr.bright_red}{unread_count}{sisyphus.getclr.reset} unread news article(s).") - else: - print( - f"\nThere are {sisyphus.getclr.green}{unread_count}{sisyphus.getclr.reset} unread news article(s).") + return unread_count def start(check=False, list=False, read=False, unread=False, article_nr=None): |