mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
🐶 fix hound
This commit is contained in:
parent
56aa22af17
commit
1f265f064a
1 changed files with 4 additions and 1 deletions
|
|
@ -36,7 +36,10 @@ class ValidatePluginPathAttributes(pyblish.api.InstancePlugin):
|
|||
|
||||
# Consider only valid node types to avoid "Unknown object type" warning
|
||||
all_node_types = set(cmds.allNodeTypes())
|
||||
node_types = [key for key in file_attrs.keys() if key in all_node_types]
|
||||
node_types = [
|
||||
key for key in file_attrs.keys()
|
||||
if key in all_node_types
|
||||
]
|
||||
|
||||
for node, node_type in pairwise(cmds.ls(type=node_types,
|
||||
showType=True)):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue