From 68b8331347d81278deb78ed0d4cd944580ae38f3 Mon Sep 17 00:00:00 2001 From: lovac42 Date: Tue, 20 Aug 2019 23:31:04 -0400 Subject: [PATCH] rm unnecessary step --- anki/find.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anki/find.py b/anki/find.py index 0c5985785..c895b7fac 100644 --- a/anki/find.py +++ b/anki/find.py @@ -545,7 +545,7 @@ def fieldNamesForNotes(col, nids): for name in col.models.fieldNames(model): if name not in fields: #slower w/o fields.add(name) - return sorted(list(fields), key=lambda x: x.lower()) + return sorted(fields, key=lambda x: x.lower()) # Find duplicates ##########################################################################