From 7bb4bbe6fe74290e8069fca53d6a4159be55ccdd Mon Sep 17 00:00:00 2001 From: Francesco Date: Wed, 13 Dec 2023 19:52:42 +0100 Subject: [PATCH] fix(BUG): fixed BUG056 --- source/BUG/logic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/BUG/logic.py b/source/BUG/logic.py index f3b3891..9b52b4b 100644 --- a/source/BUG/logic.py +++ b/source/BUG/logic.py @@ -122,7 +122,7 @@ def is_valid_password(password: str) -> bool: """ BUG056: is_valid_password should return True if the password length is greater than 8, not if it's not. """ - result = len(password) < 8 + result = len(password) > 8 return result