From a1d602f154ff9f2bd845dcf9746b7ac146abaa64 Mon Sep 17 00:00:00 2001 From: Arthur Milchior Date: Sun, 15 Dec 2019 22:54:19 -0800 Subject: [PATCH] update requireds saves reqs as lists instead of tuples. The goal of this change is to be consistent with JSON. Indeed, the dictionnary is saved as JSON, which has list and does not has tuple. The request was made in https://github.com/dae/anki/pull/361#issuecomment-565915191 --- anki/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anki/models.py b/anki/models.py index 08d366f3d..57808b101 100644 --- a/anki/models.py +++ b/anki/models.py @@ -498,7 +498,7 @@ select id from notes where mid = ?)""" % " ".join(map), flds = [f['name'] for f in m['flds']] for t in m['tmpls']: ret = self._reqForTemplate(m, flds, t) - req.append((t['ord'], ret[0], ret[1])) + req.append([t['ord'], ret[0], ret[1]]) m['req'] = req def _reqForTemplate(self, m, flds, t):