Skip to content

Commit

Permalink
refactor: Fixing linting issue
Browse files Browse the repository at this point in the history
Fixing linting issue by adding trailing comma to key in dict
  • Loading branch information
mattcollie authored Mar 13, 2024
1 parent 0b8d45e commit 68b6115
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/keycloak/openid_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def __init__(
self.headers = {
**self.headers,
"Authorization": "Bearer " + self.token.get("access_token"),
"Content-Type": "application/json"
"Content-Type": "application/json",
}

super().__init__(
Expand Down

0 comments on commit 68b6115

Please sign in to comment.