Skip to content

Commit 75aab91

Browse files
committed
Fix
1 parent 5cab0b0 commit 75aab91

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

other/password.py

+3-6
Original file line numberDiff line numberDiff line change
@@ -51,19 +51,16 @@ def random(chars_incl: str, i: int) -> str:
5151
return "".join(secrets.choice(chars_incl) for _ in range(i))
5252

5353

54-
# Put your code here...
5554
# def random_number(chars_incl, i):
56-
# pass
55+
# pass # Put your code here...
5756

5857

59-
# Put your code here...
6058
# def random_letters(chars_incl, i):
61-
# pass
59+
# pass # Put your code here...
6260

6361

64-
# Put your code here...
6562
# def random_characters(chars_incl, i):
66-
# pass
63+
# pass # Put your code here...
6764

6865

6966
def is_strong_password(password: str, min_length: int = 8) -> bool:

0 commit comments

Comments
 (0)