Added support for (De)Activation of pages and added a better error for

missing nodes
This commit is contained in:
Rick Rongen
2019-03-12 15:04:42 +01:00
parent 4989913304
commit 99e3526865
2 changed files with 27 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
from .connection import Connection
from .connection import Connection, CrxException, CrxNodeNotFound
from .simplenode import SimpleNode
from .util import get_simple_con
__version__ = (1, 0, 0, 0)
__all__ = ["Connection", "SimpleNode", "get_simple_con"]
__all__ = ["Connection", "CrxException", "CrxNodeNotFound", "SimpleNode", "get_simple_con"]