7 lines
148 B
Python
7 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
|