mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
5 lines
119 B
Python
5 lines
119 B
Python
from aqt.qt import qtmajor
|
|
if qtmajor > 5:
|
|
from .dconf_qt6 import *
|
|
else:
|
|
from .dconf_qt5 import * # type: ignore
|