from jmwright 72b67da

This commit is contained in:
jdegenstein
2022-09-16 13:52:44 -05:00
committed by GitHub
parent 04978a6f78
commit fffb6db0f2
50 changed files with 14900 additions and 0 deletions

16
run.py Normal file
View File

@@ -0,0 +1,16 @@
import os, sys, asyncio
import faulthandler
faulthandler.enable()
if 'CASROOT' in os.environ:
del os.environ['CASROOT']
if sys.platform == 'win32':
asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
from cq_editor.__main__ import main
if __name__ == '__main__':
main()