From f55361ed3b8db161ad4f310fbfa448da0e786340 Mon Sep 17 00:00:00 2001 From: Arthur Milchior Date: Tue, 1 Feb 2022 04:41:57 +0100 Subject: [PATCH] A field in __dict__ was not updated (#1632) It should have been done in d6e3964151c3c4123ac7c71d85e8cd82e9c85bef --- pylib/anki/cards.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylib/anki/cards.py b/pylib/anki/cards.py index aa5225f7d..abbcf81e4 100644 --- a/pylib/anki/cards.py +++ b/pylib/anki/cards.py @@ -193,7 +193,7 @@ class Card(DeprecatedNamesMixin): del dict_copy["_note"] del dict_copy["_render_output"] del dict_copy["col"] - del dict_copy["timerStarted"] + del dict_copy["timer_started"] return f"{super().__repr__()} {pprint.pformat(dict_copy, width=300)}" def user_flag(self) -> int: