We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3d5850f + 3c15019 commit 1670105Copy full SHA for 1670105
1 file changed
testsuite/rhsso/objects.py
@@ -72,9 +72,7 @@ def oidc_client(self) -> KeycloakOpenID:
72
"""OIDC client"""
73
# Note This is different clientId (clientId) than self.client_id (Id), because RHSSO
74
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
+ secret = self.admin.get_client_secrets(self.client_id)["value"]
78
return self.realm.oidc_client(client_id, secret)
79
80
0 commit comments