You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was trying to work with set_parameter_lower_layer, it was't working, and tracking it I've found a possible bug in the upis_builder. Seens like it's not accounting varargs and keywords
wishful_framework/controller/upis_builder.py
line 40
def get_method_sig(method):
[...]
for arg in argspec.args:
[...]
return "%s(%s)" % (method.__name__, ", ".join(args))
I`ve did this change and it worked perfectly.
for arg in argspec.args:
[...]
if argspec.varargs:
args.append("*args")
if argspec.keywords:
args.append("**kwargs")
return "%s(%s)" % (method.__name__, ", ".join(args))
The text was updated successfully, but these errors were encountered:
I was trying to work with set_parameter_lower_layer, it was't working, and tracking it I've found a possible bug in the upis_builder. Seens like it's not accounting varargs and keywords
wishful_framework/controller/upis_builder.py
line 40
I`ve did this change and it worked perfectly.
The text was updated successfully, but these errors were encountered: