-
Notifications
You must be signed in to change notification settings - Fork 0
/
rj_daily_learns_early_002_legacy.py
46 lines (36 loc) · 1.14 KB
/
rj_daily_learns_early_002_legacy.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# -*- coding: utf-8 -*-
# by Anki user rjgoif
# License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
# ####################################################################
# This is a simple add-on that inserts the daily-learning cards, i.e.
# cards in the learning queue with intervals that crossed the day turnover,
# before starting other reviews (new cards, review cards). Normally these cards
# go last, but I want them to go first.
# ####################################################################
import anki.sched as oldSched
def _getCardReordered(self):
"Return the next due card id, or None."
# new first, or time for one?
if self._timeForNewCard():
c = self._getNewCard()
if c:
return c
# learning card due?
c = self._getLrnCard()
if c:
return c
# day learning card due?
c = self._getLrnDayCard()
if c:
return c
# card due for review?
c = self._getRevCard()
if c:
return c
# new cards left?
c = self._getNewCard()
if c:
return c
# collapse or finish
return self._getLrnCard(collapse=True)
oldSched.Scheduler._getCard = _getCardReordered