Browse Source
refactor: Fixing linting issue
Fixing linting issue by adding trailing comma to key in dict
pull/533/head
Matt Collecutt
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
src/keycloak/openid_connection.py
|
|
@ -124,7 +124,7 @@ class KeycloakOpenIDConnection(ConnectionManager): |
|
|
|
self.headers = { |
|
|
|
**self.headers, |
|
|
|
"Authorization": "Bearer " + self.token.get("access_token"), |
|
|
|
"Content-Type": "application/json" |
|
|
|
"Content-Type": "application/json", |
|
|
|
} |
|
|
|
|
|
|
|
super().__init__( |
|
|
|