fake import classes from structures too

This commit is contained in:
Jakub Trllo 2024-08-28 18:13:06 +02:00
parent a4ed32e3e1
commit e33f8670fd

View file

@ -39,12 +39,18 @@ from .creator_plugins import (
discover_convertor_plugins,
)
# Import of exceptions that were moved to different file
# Import of functions and classes that were moved to different file
# TODO Should be removed in future release - Added 24/08/28, 0.4.3-dev.1
from .exceptions import (
ImmutableKeyError,
CreatorsOperationFailed,
ConvertorsOperationFailed,
) # noqa: F401
from .structures import (
AttributeValues,
CreatorAttributeValues,
PublishAttributeValues,
) # noqa: F401
# Changes of instances and context are send as tuple of 2 information
UpdateData = collections.namedtuple("UpdateData", ["instance", "changes"])