Add a doc string and a terminal newline

This commit is contained in:
Eryn Wells 2022-05-12 20:40:40 -07:00
parent ce63c825b0
commit ee915bd7c1
2 changed files with 9 additions and 1 deletions

View file

@ -37,6 +37,14 @@ def find_fonts_directory():
return possible_fonts_dir
def main(argv):
'''
Beginning of the game
Parameters
----------
argv : List[str]
A standard argument list, most likely you'll get this from sys.argv
'''
args = parse_args(argv[1:], prog=argv[0])
log.init()