From 8afe36b8e94006a04cfb5b2bca4e521031a0b647 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 2a933558249190ee1df5398f4150b9473293706a --- 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: