From 889ccee4d32d4c2699738b122ff4658a48f83f0a Mon Sep 17 00:00:00 2001 From: doctor_dev Date: Sat, 7 Jun 2025 19:07:58 +0000 Subject: [PATCH] Added fstring --- scripts/logic/options.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/logic/options.py b/scripts/logic/options.py index 0376a23..9cd3be5 100644 --- a/scripts/logic/options.py +++ b/scripts/logic/options.py @@ -40,7 +40,7 @@ def run_option_4(): continue if not utils.is_participant_reachable(participant.URL): - utils.print_colors("[-] Webring {participant.URL} isn't reachable, skipping", is_error=True) + utils.print_colors(f"[-] Webring {participant.URL} isn't reachable, skipping", is_error=True) continue utils.print_colors('[+] Downloading participant\'s files to store locally') @@ -48,7 +48,7 @@ def run_option_4(): participant_url = utils.generate_local_participant_dir(participant.URL) - utils.print_colors('[+] Reading webrring participant\'s verified and unverified') + utils.print_colors('[+] Reading webring participant\'s verified and unverified') participant_verified_df, participant_unverified_df = utils.get_participant_local_verified_and_unverified(participant_url) utils.print_colors('[+] Removing unvalidated and blacklisted rows') @@ -74,7 +74,7 @@ def run_option_4(): utils.save_local_verified_and_unverified(local_verified_df, local_unverified_df) except Exception as err: - utils.print_colors("[-] Option 4 failed suddently, please try again", is_error=True) + utils.print_colors("[-] Option 4 failed suddenly, please try again", is_error=True) def run_option_6(): """