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