Skip to content

Commit 4adf3b9

Browse files
author
cclauss
authored
Pass flake8 tests
Without these changes, Python syntax errors are raised. flake8 should be run by this repo's .travis.yml file but it is currently turned off.
1 parent ee6e5a4 commit 4adf3b9

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

other/password_generator.py

+12-6
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,23 @@
1313
password = ''.join(random.choice(chars) for x in range(random.randint(min_length, max_length)))
1414
print('Password: ' + password)
1515
print('[ If you are thinking of using this passsword, You better save it. ]')
16+
17+
1618
# ALTERNATIVE METHODS
1719
# ctbi= characters that must be in password
1820
# i= how many letters or characters the password length will be
1921
def password_generator(ctbi, i):
2022
# Password generator = full boot with random_number, random_letters, and random_character FUNCTIONS
23+
pass # Put your code here...
24+
25+
2126
def random_number(ctbi, i):
22-
23-
24-
27+
pass # Put your code here...
28+
29+
2530
def random_letters(ctbi, i):
26-
27-
28-
31+
pass # Put your code here...
32+
33+
2934
def random_characters(ctbi, i):
35+
pass # Put your code here...

0 commit comments

Comments
 (0)