mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -04:00

It's rarely updated, and the old approach resulted in a 'proper' aqt build only being done on a Mac.
13 lines
342 B
Python
13 lines
342 B
Python
# Copyright: Ankitects Pty Ltd and contributors
|
|
# License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
from __future__ import annotations
|
|
|
|
import sys
|
|
|
|
if sys.platform == "darwin":
|
|
from anki_mac_helper import ( # pylint:disable=unused-import,import-error
|
|
macos_helper,
|
|
)
|
|
else:
|
|
macos_helper = None
|