Doc comments and stuff

This commit is contained in:
Eryn Wells 2022-05-07 11:56:55 -07:00
parent 54568d70c2
commit 7b747fb4d3
3 changed files with 8 additions and 3 deletions

View file

@ -78,7 +78,10 @@ def main(argv):
engine.handle_event(event)
def run_until_exit():
'''Run the package's main() and call sys.exit when it finishes.'''
'''
Run main() and call sys.exit when it finishes. In practice, this function will never return. The game engine has
other mechanisms for exiting.
'''
result = main(sys.argv)
sys.exit(0 if not result else result)