Skip to content

Commit 72e3de7

Browse files
authored
Merge pull request 3scale-qe#931 from mdujava/rhsso-7-error
2 parents 57fa12a + 0ba9fdb commit 72e3de7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ pytest-asyncio = "==0.21.2"
2929
requests = "*"
3030
3scale-api = ">=0.35.0"
3131
dynaconf = "*"
32-
python-keycloak = ">=4.7.3" # this fix needed: https://github.com/marcospereirampj/python-keycloak/pull/622/files
32+
python-keycloak = "==4.0.1"
3333
backoff = "*"
3434
websocket_client = "==1.5.1"
3535
httpx = {version = "*", extras = ["http2"]}

testsuite/rhsso/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def oidc_client(self) -> KeycloakOpenID:
3333
"""OIDCClient for the created client"""
3434
if not self._oidc_client:
3535
self._oidc_client = self.client.oidc_client
36-
return self._oidc_client # type: ignore
36+
return self._oidc_client
3737

3838
def issuer_url(self) -> str:
3939
"""

0 commit comments

Comments
 (0)