mirror of
https://github.com/ankitects/anki.git
synced 2025-12-11 05:46:55 -05:00
Include v2 scheduler in "no longer supported" message
This commit is contained in:
parent
c788f8ac8a
commit
4dc9890845
1 changed files with 2 additions and 2 deletions
|
|
@ -17,10 +17,10 @@ class DummyScheduler(SchedulerBaseWithLegacy):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def getCard(self) -> Card | None:
|
def getCard(self) -> Card | None:
|
||||||
raise Exception("v1 scheduler no longer supported")
|
raise Exception("v1/v2 scheduler no longer supported")
|
||||||
|
|
||||||
def answerCard(self, card: Card, ease: int) -> None:
|
def answerCard(self, card: Card, ease: int) -> None:
|
||||||
raise Exception("v1 scheduler no longer supported")
|
raise Exception("v1/v2 scheduler no longer supported")
|
||||||
|
|
||||||
def _is_finished(self) -> bool:
|
def _is_finished(self) -> bool:
|
||||||
return False
|
return False
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue