mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 08:46:37 -04:00
formatting fix
This commit is contained in:
parent
6fd3d1e8b4
commit
bf3562841a
1 changed files with 5 additions and 2 deletions
|
@ -276,8 +276,11 @@ from revlog where id > ? """
|
|||
|
||||
def _dueInfo(self, tot, num) -> str:
|
||||
i: List[str] = []
|
||||
self._line(i, _("Total"),
|
||||
self.col.backend.translate(StringsGroup.STATISTICS, "reviews", reviews=tot))
|
||||
self._line(
|
||||
i,
|
||||
_("Total"),
|
||||
self.col.backend.translate(StringsGroup.STATISTICS, "reviews", reviews=tot),
|
||||
)
|
||||
self._line(i, _("Average"), self._avgDay(tot, num, _("reviews")))
|
||||
tomorrow = self.col.db.scalar(
|
||||
f"""
|
||||
|
|
Loading…
Reference in a new issue