Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kaavee315 committed Apr 24, 2024
1 parent 332debb commit bd25575
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/composio/composio_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ def add_integration(args):
auth_schemes = app.get('auth_schemes')
auth_modes_arr = [auth_scheme.get('auth_mode') for auth_scheme in auth_schemes]
if len(auth_modes_arr) > 0 and auth_modes_arr[0] in ['API_KEY', 'BASIC', 'SNOWFLAKE']:
connection = entity.initiate_connection_not_oauth(integration_name.lower(), auth_mode=auth_modes_arr[0])
connection = entity.initiate_connection_not_oauth(app_name=integration_name.lower(), auth_mode=auth_modes_arr[0])
fields = auth_schemes[0].get('fields')
fields_input = {}
for field in fields:
Expand Down

0 comments on commit bd25575

Please sign in to comment.