mirror of
https://github.com/jdegenstein/jmwright-CQ-Editor.git
synced 2025-12-19 14:14:13 +01:00
17 lines
308 B
Python
17 lines
308 B
Python
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()
|