diff --git a/coreschema/__init__.py b/coreschema/__init__.py index ccbc0ce..e256be6 100644 --- a/coreschema/__init__.py +++ b/coreschema/__init__.py @@ -1,7 +1,7 @@ from coreschema.schemas import ( Object, Array, Integer, Number, String, Boolean, Null, Enum, Anything, Ref, RefSpace, - Union, Intersection, ExclusiveUnion, Not + Union, Intersection, ExclusiveUnion, Not, ) from coreschema.encodings.html import render_to_form @@ -9,8 +9,8 @@ __version__ = '0.0.4' __all__ = [ - Object, Array, Integer, Number, String, Boolean, Null, - Enum, Anything, Ref, RefSpace, - Union, Intersection, ExclusiveUnion, Not, - render_to_form + 'Object', 'Array', 'Integer', 'Number', 'String', 'Boolean', 'Null', + 'Enum', 'Anything', 'Ref', 'RefSpace', + 'Union', 'Intersection', 'ExclusiveUnion', 'Not', + 'render_to_form', ]