mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 08:46:37 -04: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
|
||||
|
||||
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:
|
||||
raise Exception("v1 scheduler no longer supported")
|
||||
raise Exception("v1/v2 scheduler no longer supported")
|
||||
|
||||
def _is_finished(self) -> bool:
|
||||
return False
|
||||
|
|
Loading…
Reference in a new issue