diff --git a/tildes/tildes/schemas/comment.py b/tildes/tildes/schemas/comment.py index d181aec..0562276 100644 --- a/tildes/tildes/schemas/comment.py +++ b/tildes/tildes/schemas/comment.py @@ -25,7 +25,7 @@ class CommentLabelSchema(Schema): """Marshmallow schema for comment labels.""" name = Enum(CommentLabelOption) - reason = SimpleString(missing=None) + reason = SimpleString(max_length=1000, missing=None) class Meta: """Always use strict checking so error handlers are invoked."""