mirror of
https://github.com/ankitects/anki.git
synced 2025-11-07 05:07:10 -05:00
5 lines
127 B
Python
5 lines
127 B
Python
from aqt.qt import qtmajor
|
|
if qtmajor > 5:
|
|
from .changemap_qt6 import *
|
|
else:
|
|
from .changemap_qt5 import * # type: ignore
|