mirror of
https://github.com/ankitects/anki.git
synced 2026-01-13 22:13:58 -05:00
11 lines
280 B
Python
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
|