Anki/qt/aqt/_macos_helper.py
2025-06-23 12:17:56 +03:00

11 lines
280 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 macos_helper
else:
macos_helper = None