mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-27 14:22:37 +01:00
🥅 catch edge case data flow
This commit is contained in:
parent
6ee68861a8
commit
696dc78be7
1 changed files with 3 additions and 0 deletions
|
|
@ -310,6 +310,9 @@ def imprint(node, data, update=False):
|
|||
"""
|
||||
if not data:
|
||||
return
|
||||
if not node:
|
||||
self.log.error("Node is not set, calling imprint on invalid data.")
|
||||
return
|
||||
|
||||
current_parms = {p.name(): p for p in node.spareParms()}
|
||||
update_parms = []
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue