changed noqa location

This commit is contained in:
Jakub Trllo 2024-08-28 18:25:40 +02:00
parent e33f8670fd
commit 0ce2bf6633

View file

@ -42,15 +42,15 @@ from .creator_plugins import (
# 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
ImmutableKeyError, # noqa: F401
CreatorsOperationFailed, # noqa: F401
ConvertorsOperationFailed, # noqa: F401
)
from .structures import (
AttributeValues,
CreatorAttributeValues,
PublishAttributeValues,
) # noqa: F401
AttributeValues, # noqa: F401
CreatorAttributeValues, # noqa: F401
PublishAttributeValues, # noqa: F401
)
# Changes of instances and context are send as tuple of 2 information
UpdateData = collections.namedtuple("UpdateData", ["instance", "changes"])