Skip to content

Commit

Permalink
Remove unused variable
Browse files Browse the repository at this point in the history
Token variable is assigned but never used
  • Loading branch information
thalman committed Aug 17, 2024
1 parent a2b20b8 commit 51b20a3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions keycloak_httpd_client/keycloak_rest.py
Original file line number Diff line number Diff line change
Expand Up @@ -629,11 +629,11 @@ def _create_session(self, tls_verify):
'client_id': self.client_id})

session.verify = tls_verify
token = session.fetch_token(token_url=token_url,
username=self.username,
password=self.password,
client_id=self.client_id,
verify=session.verify)
session.fetch_token(token_url=token_url,
username=self.username,
password=self.password,
client_id=self.client_id,
verify=session.verify)

return session

Expand Down

0 comments on commit 51b20a3

Please sign in to comment.