diff options
Diffstat (limited to 'src/zope/schema/interfaces.py')
| -rw-r--r-- | src/zope/schema/interfaces.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/zope/schema/interfaces.py b/src/zope/schema/interfaces.py index 2831229..f2b033f 100644 --- a/src/zope/schema/interfaces.py +++ b/src/zope/schema/interfaces.py @@ -42,7 +42,7 @@ from zope.schema._bootstrapinterfaces import InvalidValue from zope.schema._bootstrapinterfaces import IContextAwareDefaultFactory from zope.schema._compat import PY3 -from zope.schema._compat import u + from zope.schema._messageid import _ @@ -125,14 +125,14 @@ class IField(Interface): title = TextLine( title=_("Title"), description=_("A short summary or label"), - default=u(""), + default=u"", required=False, ) description = Text( title=_("Description"), description=_("A description of the field"), - default=u(""), + default=u"", required=False, ) |
