forked from goodboy/tractor
1
0
Fork 0
tractor/examples/__main__.py

12 lines
319 B
Python
Raw Normal View History

"""
Needed in windows.
This needs to be the main program as it will be
called '__mp_main__' by the multiprocessing module
"""
if __name__ == '__main__':
import multiprocessing
multiprocessing.freeze_support()
from . import test_example
test_example.tractor.run(test_example.main, start_method='spawn')