mirror of
https://github.com/ankitects/anki.git
synced 2025-09-21 07:22:23 -04:00
6 lines
148 B
Python
6 lines
148 B
Python
from aqt.qt import qtmajor
|
|
|
|
if qtmajor > 5:
|
|
from _aqt.forms.widgets_qt6 import *
|
|
else:
|
|
from _aqt.forms.widgets_qt5 import * # type: ignore
|