Skip to content

Commit 5f66a69

Browse files
small fix
1 parent 9685249 commit 5f66a69

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

modules/release/QuickExt.tox

8 Bytes
Binary file not shown.
Binary file not shown.

scripts/QuickExt/templates/ExtUtils/NoNode/NoNode.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -633,10 +633,10 @@ def OnParExec(cls, event_type: ParExecType, parameter: Par, value = None, prev =
633633
return
634634

635635
owner = parameter.owner
636-
if owner not in cls.PAREXEC_CALLBACKS[event_type]:
636+
if owner not in cls.PAREXEC_CALLBACKS.getRaw()[event_type]:
637637
return
638638

639-
callback = cls.PAREXEC_CALLBACKS[event_type][owner].get(parameter)
639+
callback = cls.PAREXEC_CALLBACKS.getRaw()[event_type][owner].get(parameter)
640640

641641
if callback:
642642
arg_count = callback.__code__.co_argcount

0 commit comments

Comments
 (0)