Added support for deleting assets to trash

This commit is contained in:
Rick Rongen
2019-05-20 14:42:40 +02:00
parent 3ba0d948f6
commit 21a23a70cc
2 changed files with 32 additions and 2 deletions

View File

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