Skip to content

Commit 5cab0b0

Browse files
committed
Fix other/password.py
1 parent c8a60c9 commit 5cab0b0

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

other/password.py

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

5353

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

5758

58-
def random_letters(chars_incl, i):
59-
pass # Put your code here...
59+
# Put your code here...
60+
# def random_letters(chars_incl, i):
61+
# pass
6062

6163

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

6568

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

0 commit comments

Comments
 (0)