Skip to content

Commit

Permalink
fix: 'dict_keys' object is not subscriptable error (langgenius#11957)
Browse files Browse the repository at this point in the history
Signed-off-by: yihong0618 <[email protected]>
  • Loading branch information
yihong0618 authored Dec 22, 2024
1 parent 750662e commit 26c10b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/core/tools/provider/app_tool_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def get_tools(self, user_id: str) -> list[Tool]:
user_input_form_list = app_model_config.user_input_form_list
for input_form in user_input_form_list:
# get type
form_type = input_form.keys()[0]
form_type = list(input_form.keys())[0]
default = input_form[form_type]["default"]
required = input_form[form_type]["required"]
label = input_form[form_type]["label"]
Expand Down

0 comments on commit 26c10b9

Please sign in to comment.