mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
fix warning on creating new deck
This commit is contained in:
parent
913fe96c07
commit
f1397fcd86
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ cardModelsTable = Table(
|
|||
Column('editAnswerFontSize', Integer, default=None),
|
||||
# empty answer
|
||||
Column('allowEmptyAnswer', Boolean, nullable=False, default=True),
|
||||
Column('typeAnswer', UnicodeText, nullable=False, default=""))
|
||||
Column('typeAnswer', UnicodeText, nullable=False, default=u""))
|
||||
|
||||
class CardModel(object):
|
||||
"""Represents how to generate the front and back of a card."""
|
||||
|
|
Loading…
Reference in a new issue