mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00

- Bazel no longer required - Python no longer required - Add back the import check step that got lost at one point
12 lines
268 B
Python
12 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()
|