From 64e7b5f4fed945b83bc8fdd1aff70fa1201aad8a Mon Sep 17 00:00:00 2001 From: hongavott <122172124+hongavott@users.noreply.github.com> Date: Sat, 7 Jan 2023 19:39:31 +0200 Subject: [PATCH] Update check.py Co-authored-by: Daniel Schipschi --- LabMD_2/check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LabMD_2/check.py b/LabMD_2/check.py index 177a176..1a4f1e2 100644 --- a/LabMD_2/check.py +++ b/LabMD_2/check.py @@ -37,7 +37,7 @@ def checkPassword(psw): x = max(checkLength(psw), checkComposition(psw), checkRepeating(psw)) if x: return x - return "good" + return "Good!" passw = input()