mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 00:44:52 +01:00
fix linter
This commit is contained in:
parent
84ca6a591c
commit
316ee85f7b
1 changed files with 4 additions and 2 deletions
|
|
@ -12,8 +12,10 @@ class ImportModelRender(api.InventoryAction):
|
|||
|
||||
@staticmethod
|
||||
def is_compatible(container):
|
||||
return container.get("loader") == "ReferenceLoader" \
|
||||
and container.get("name", "").startswith("model")
|
||||
return (
|
||||
container.get("loader") == "ReferenceLoader"
|
||||
and container.get("name", "").startswith("model")
|
||||
)
|
||||
|
||||
def process(self, containers):
|
||||
from maya import cmds
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue