This commit is contained in:
AUTOMATIC1111 2023-09-09 10:23:53 +03:00
parent 9cebe308e9
commit 06af73bd1d
1 changed files with 1 additions and 1 deletions

View File

@ -498,7 +498,7 @@ class ScriptRunner:
choices = getattr(control, 'choices', None) # as of gradio 3.41, some items in choices are strings, and some are tuples where the first elem is the string
if choices is not None:
setattr(arg_info, 'choices', [x[0] if isinstance(x, tuple) else x for x in choices])
arg_info.choices = [x[0] if isinstance(x, tuple) else x for x in choices]
api_args.append(arg_info)