Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
liormgem committed May 6, 2024
1 parent a965fb3 commit f32942a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Packs/Gem/Integrations/Gem/Gem.py
Original file line number Diff line number Diff line change
Expand Up @@ -575,8 +575,8 @@ def init_client(params: dict) -> GemClient:
base_url=params['api_endpoint'],
verify=True,
proxy=params.get('proxy', False),
client_id=demisto.getParam('credentials')['identifier'], # type: ignore
client_secret=demisto.getParam('credentials')['password'] # type: ignore
client_id=demisto.getParam('credentials', {})['identifier'], # type: ignore
client_secret=demisto.getParam('credentials', {})['password'] # type: ignore
)


Expand Down

0 comments on commit f32942a

Please sign in to comment.