Skip to content
Snippets Groups Projects
Commit a81214a8 authored by Antoine Lambert's avatar Antoine Lambert
Browse files

pytest_plugin: Fix a sphinx warning

Sphinx complains about an unexpected indentation if a constructor
docstring is missing.
parent bb90bd23
No related branches found
No related tags found
No related merge requests found
...@@ -59,6 +59,8 @@ class KeycloackOpenIDConnectMock(KeycloakOpenIDConnect): ...@@ -59,6 +59,8 @@ class KeycloackOpenIDConnectMock(KeycloakOpenIDConnect):
user_info: Dict = USER_INFO, user_info: Dict = USER_INFO,
raw_realm_public_key: str = RAW_REALM_PUBLIC_KEY, raw_realm_public_key: str = RAW_REALM_PUBLIC_KEY,
): ):
"""Constructor
"""
super().__init__( super().__init__(
server_url=server_url, realm_name=realm_name, client_id=client_id server_url=server_url, realm_name=realm_name, client_id=client_id
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment