From 52135bae5e9d983c1e0a404cee5a1882730e90df Mon Sep 17 00:00:00 2001 From: CodeByMrFinchum Date: Mon, 30 Dec 2024 21:08:28 +0100 Subject: [PATCH] honk --- utils/utility.py | 1 - 1 file changed, 1 deletion(-) diff --git a/utils/utility.py b/utils/utility.py index 6f09597..c8b0850 100644 --- a/utils/utility.py +++ b/utils/utility.py @@ -34,7 +34,6 @@ class Utilities: def progress_bar(self, current, total, barsize = 50): if current > total: print("\033[91mThis bar has exceeded its limits!\033[0m Maybe the current value needs some restraint?") - print(f"{(current - total) * '\033[92mHonk, Honk!\033[0m '}") return progress = int((barsize / total) * current) rest = barsize - progress