You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
357 B
15 lines
357 B
4 months ago
|
import sys
|
||
|
|
||
|
try:
|
||
|
import layout
|
||
|
except ImportError:
|
||
|
# Failed to import our package, which likely means we were started directly
|
||
|
# Add the additional search path needed to locate our module.
|
||
|
from pathlib import Path
|
||
|
|
||
|
sys.path.insert(0, str(Path(__file__).resolve().parent.parent))
|
||
|
|
||
|
from layout.main import main
|
||
|
|
||
|
sys.exit(int(main() or 0))
|