1aae621549
- Bazel no longer required - Python no longer required - Add back the import check step that got lost at one point
13 lines
268 B
Python
13 lines
268 B
Python
# Copyright: Ankitects Pty Ltd and contributors
|
|
# License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
import os
|
|
import sys
|
|
|
|
sys.path.extend(["pylib", "qt", "out/pylib", "out/qt"])
|
|
|
|
import aqt
|
|
|
|
if not os.environ.get("SKIP_RUN"):
|
|
aqt.run()
|