mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
changed noqa location
This commit is contained in:
parent
e33f8670fd
commit
0ce2bf6633
1 changed files with 8 additions and 8 deletions
|
|
@ -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"])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue