#91: Fixed app_sdk execution result
This commit is contained in:
@@ -810,11 +810,11 @@ class AppBase:
|
|||||||
result += newres
|
result += newres
|
||||||
else:
|
else:
|
||||||
try:
|
try:
|
||||||
result += str(result)
|
result += str(newres)
|
||||||
except ValueError:
|
except ValueError:
|
||||||
result += "Failed autocasting. Can't handle %s type from function. Must be string" % type(newres)
|
result += "Failed autocasting. Can't handle %s type from function. Must be string" % type(newres)
|
||||||
print("Can't handle type %s value from function" % (type(newres)))
|
print("Can't handle type %s value from function" % (type(newres)))
|
||||||
print("POST NEWRES: ", newres)
|
print("POST NEWRES RESULT: ", result)
|
||||||
else:
|
else:
|
||||||
print("APP_SDK DONE: Starting MULTI execution with", multi_parameters)
|
print("APP_SDK DONE: Starting MULTI execution with", multi_parameters)
|
||||||
# 1. Use number of executions based on longest array
|
# 1. Use number of executions based on longest array
|
||||||
|
|||||||
Reference in New Issue
Block a user