moved_repo_first_update
This commit is contained in:
Executable
+15
@@ -0,0 +1,15 @@
|
||||
#!/usr/bin/env python3
|
||||
"""Launch the Tkinter front-end for run_multifold."""
|
||||
|
||||
import sys
|
||||
from pathlib import Path
|
||||
|
||||
REPO_ROOT = Path(__file__).resolve().parents[1]
|
||||
if str(REPO_ROOT) not in sys.path:
|
||||
sys.path.insert(0, str(REPO_ROOT))
|
||||
|
||||
from classes.frontend import launch_frontend
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
launch_frontend()
|
||||
Reference in New Issue
Block a user