orchid-initiative / synthetic-database-project

MIT License
4 stars 2 forks source link

Put run_synthea.py driver code into main function #49

Open masonium opened 1 year ago

masonium commented 1 year ago

Usually, it's best practice to put driver code in a main function and call main() at the end of the script, with a block like this:

def main():
    # driver code here...

if __name__ == "__main__":
    main()