修复createAsyncTask参数解构问题

This commit is contained in:
aozhiwei 2020-05-06 17:14:30 +08:00
parent 11b6e20c15
commit d84f116255

View File

@ -117,7 +117,7 @@ class _App:
def thread_func(args): def thread_func(args):
try: try:
if len(args) > 0: if len(args) > 0:
func(args) func(*args)
else: else:
func() func()
except Exception as e: except Exception as e: