From 61a7afc0dda5ef4dd87c545216c9c9ce9a28378a Mon Sep 17 00:00:00 2001 From: thePR0M3TH3AN <53631862+PR0M3TH3AN@users.noreply.github.com> Date: Mon, 30 Jun 2025 12:57:45 -0400 Subject: [PATCH] Remove redundant print in load_json_data --- src/password_manager/encryption.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/password_manager/encryption.py b/src/password_manager/encryption.py index 2875071..40f3b31 100644 --- a/src/password_manager/encryption.py +++ b/src/password_manager/encryption.py @@ -302,9 +302,6 @@ class EncryptionManager: json_content = decrypted_data.decode("utf-8").strip() data = json.loads(json_content) logger.debug(f"JSON data loaded and decrypted from '{file_path}': {data}") - print( - colored(f"JSON data loaded and decrypted from '{file_path}'.", "green") - ) return data except json.JSONDecodeError as e: logger.error(f"Failed to decode JSON data from '{file_path}': {e}")