Skip to content
This repository was archived by the owner on Mar 18, 2019. It is now read-only.

Fix __all__ declaration #16

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions coreschema/__init__.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
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


__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',
]