mirror of
https://github.com/DYefremov/DemonEditor.git
synced 2025-12-30 04:19:41 +01:00
9 lines
220 B
Python
9 lines
220 B
Python
#!/usr/bin/env python3
|
|
|
|
if __name__ == "__main__":
|
|
from multiprocessing import set_start_method
|
|
from app.ui.main import start_app
|
|
|
|
set_start_method("fork") # For compatibility [Python > 3.7]
|
|
start_app()
|