attempt fixes for pip installable

This commit is contained in:
Jay Lee
2021-08-27 12:10:15 -04:00
parent 1100fdd456
commit 83214eaaf8
2 changed files with 4 additions and 4 deletions

View File

@@ -30,7 +30,7 @@ from gam import controlflow
import gam
def main(argv):
def main():
freeze_support()
if sys.platform == 'darwin':
# https://bugs.python.org/issue33725 in Python 3.8.0 seems
@@ -47,4 +47,4 @@ def main(argv):
# Run from command line
if __name__ == '__main__':
main(sys.argv)
main()