Commit f8a100b8dcb9d27e7ed63f37c1a496df6e723302

Authored by Rohan Rangray
1 parent b702b81911
Exists in master

Undid the last change. It was converting the list to a python-readable format so it wasn't wrong.

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

flashcards/fields.py View file @ f8a100b
... ... @@ -40,7 +40,7 @@
40 40 def to_python(self, value):
41 41 if value is None:
42 42 return value
43   - return sorted(map(list, FlashcardMask(value)))
  43 + return sorted(list(FlashcardMask(value)))
44 44  
45 45 def get_prep_value(self, value):
46 46 if value is None: