A field in __dict__ was not updated (#1632)

It should have been done in d6e3964151
This commit is contained in:
Arthur Milchior 2022-02-01 04:41:57 +01:00 committed by GitHub
parent 800c26844a
commit f55361ed3b

View file

@ -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: