bugfix: method hasParam did not return any value
This commit is contained in:
parent
82540c50af
commit
5f8b6de1ec
@ -135,9 +135,9 @@ class AutoPickParameter(object):
|
|||||||
|
|
||||||
try:
|
try:
|
||||||
for param in args:
|
for param in args:
|
||||||
test(param)
|
return test(param)
|
||||||
except TypeError:
|
except TypeError:
|
||||||
test(args)
|
return test(args)
|
||||||
|
|
||||||
def getParam(self, *args):
|
def getParam(self, *args):
|
||||||
try:
|
try:
|
||||||
|
Loading…
Reference in New Issue
Block a user