mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
12 lines
399 B
Python
12 lines
399 B
Python
# Copyright: Ankitects Pty Ltd and contributors
|
|
# License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
from __future__ import annotations
|
|
|
|
import anki.scheduler.base as _base
|
|
|
|
UnburyDeck = _base.UnburyDeck
|
|
CongratsInfo = _base.CongratsInfo
|
|
BuryOrSuspend = _base.BuryOrSuspend
|
|
FilteredDeckForUpdate = _base.FilteredDeckForUpdate
|
|
CustomStudyRequest = _base.CustomStudyRequest
|