Skip to content

Commit

Permalink
Update reschedule.py
Browse files Browse the repository at this point in the history
  • Loading branch information
L-M-Sherlock committed Jun 14, 2024
1 parent 04b1502 commit c0b9608
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion schedule/reschedule.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def apply_fuzz(self, ivl):
else:
# Load balance
due = self.card.odue if self.card.odid else self.card.due
if due - self.card.ivl + max_ivl < mw.col.sched.today:
if due - self.card.ivl + max_ivl <= mw.col.sched.today:
# If the latest possible due date is in the past, don't load balance
return ivl

Expand Down

0 comments on commit c0b9608

Please sign in to comment.