Merge pull request #4 from hongavott/patch-3

Update check.py
This commit was merged in pull request #4.
This commit is contained in:
Daniel
2023-01-07 19:40:01 +02:00
committed by GitHub

View File

@@ -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()