Update check.py

Co-authored-by: Daniel Schipschi <danthevip@gmail.com>
This commit is contained in:
hongavott
2023-01-07 19:39:31 +02:00
committed by GitHub
parent c11c8f3295
commit 64e7b5f4fe

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