mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
5 lines
125 B
Python
5 lines
125 B
Python
from aqt.qt import qtmajor
|
|
if qtmajor > 5:
|
|
from .progress_qt6 import *
|
|
else:
|
|
from .progress_qt5 import * # type: ignore
|