Skip to content

Commit 0d6d24d

Browse files
authored
Update password_checker.py
1 parent dc690c2 commit 0d6d24d

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

examples/project_examples/password_checker.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ def generate_password() -> str:
1111
return Str(string.ascii_letters + string.digits + ".,?!$#").generate(min_=20, max_=30)
1212

1313
def calc_strength(self, points: int):
14-
print(points)
1514
if points <= 15:
1615
print("You password is okay. Maybe use a new password. Example: " + self.generate_password())
1716
elif points <= 10:

0 commit comments

Comments
 (0)