Rename functions.py to functions.py.default

Since this is default settings and the user might want to customize
them, functions.py has been renamed. This also will prevent conflicts if
the user has updated their functions.py and then tries to pull.
This commit is contained in:
2020-09-02 18:04:41 -05:00
parent 841bb513d3
commit 065296f84a
2 changed files with 2 additions and 1 deletions

8
functions.py.default Normal file
View File

@ -0,0 +1,8 @@
import string
import random
def generate_name():
chars = string.ascii_letters + string.digits # uppercase, lowercase, and numbers
name = ''.join((random.choice(chars) for i in range(8))) # generate name
return name