Skip to content

Commit 1670105

Browse files
authored
Merge pull request #944 from mdujava/bump_python_keycloak
2 parents 3d5850f + 3c15019 commit 1670105

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

testsuite/rhsso/objects.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,7 @@ def oidc_client(self) -> KeycloakOpenID:
7272
"""OIDC client"""
7373
# Note This is different clientId (clientId) than self.client_id (Id), because RHSSO
7474
client_id = self.admin.get_client(self.client_id)["clientId"]
75-
# next type ignore is needed only until this fix will be released:
76-
# https://github.com/marcospereirampj/python-keycloak/pull/655
77-
secret = self.admin.get_client_secrets(self.client_id)["value"] # type: ignore
75+
secret = self.admin.get_client_secrets(self.client_id)["value"]
7876
return self.realm.oidc_client(client_id, secret)
7977

8078

0 commit comments

Comments
 (0)