We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 255cef6 commit 24d0ff8Copy full SHA for 24d0ff8
ngcsimlib/compilers/process_compiler/component_compiler.py
@@ -6,7 +6,7 @@ def __make_get_arg(a):
6
return lambda current_state, **kwargs: kwargs.get(a, None)
7
8
def __make_get_param(p, component):
9
- lambda current_state, **kwargs: component.__dict__.get(p, None)
+ return lambda current_state, **kwargs: component.__dict__.get(p, None)
10
11
def __make_get_comp(c, component):
12
return lambda current_state, **kwargs: current_state.get(component.__dict__[c].path, None)
0 commit comments