Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
utkarsh-dixit committed Mar 24, 2024
1 parent 8136434 commit 9ff7ce5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion langchain/composio_langchain/composio_tool_spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def get_signature_format_from_schema_params(
):
parameters = []
required_params = schema_params.get('required', [])
schema_parms_object = schema_params.get('items', {})
schema_parms_object = schema_params.get('properties', {})
for param_name, param_schema in schema_parms_object.items():
param_type = param_schema['type']
param_title = param_schema['title'].replace(" ", "")
Expand Down

0 comments on commit 9ff7ce5

Please sign in to comment.