Skip to content

Commit

Permalink
fixed clone model validation reqs
Browse files Browse the repository at this point in the history
  • Loading branch information
frnsys committed Jul 17, 2014
1 parent ee15b55 commit 92f059a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ class Clone(db.Document):
username = db.StringField(required=True, unique=True)

# Mad-lib Tweet patterns.
patterns = db.ListField(db.StringField(), required=True, default=[])
patterns = db.ListField(db.StringField(), default=[])

# { POS tag: words }
vocabulary = db.DictField(required=True, default={})
vocabulary = db.DictField(default={})

meta = {
'allow_inheritance': True,
Expand Down

0 comments on commit 92f059a

Please sign in to comment.