mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-26 05:42:15 +01:00
removed reference bool argument
This commit is contained in:
parent
85e75465b1
commit
1e003e95f1
1 changed files with 2 additions and 3 deletions
|
|
@ -41,8 +41,7 @@ class ValidateNodeIDs(pyblish.api.InstancePlugin):
|
|||
|
||||
# We do want to check the referenced nodes as it might be
|
||||
# part of the end product
|
||||
id_nodes = lib.get_id_required_nodes(referenced_nodes=True)
|
||||
invalid = [n for n in instance[:] if n in id_nodes
|
||||
and not lib.get_id(n)]
|
||||
id_nodes = lib.get_id_required_nodes(nodes=instance[:])
|
||||
invalid = [n for n in id_nodes if not lib.get_id(n)]
|
||||
|
||||
return invalid
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue