Kun Yang
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
src/keycloak/keycloak_admin.py
|
|
@ -29,6 +29,7 @@ |
|
|
|
import copy |
|
|
|
import json |
|
|
|
from builtins import isinstance |
|
|
|
from typing import Optional |
|
|
|
|
|
|
|
import deprecation |
|
|
|
from requests_toolbelt import MultipartEncoder |
|
|
@ -100,7 +101,7 @@ class KeycloakAdmin: |
|
|
|
user_realm_name=None, |
|
|
|
auto_refresh_token=None, |
|
|
|
timeout=60, |
|
|
|
connection: KeycloakOpenIDConnection = None, |
|
|
|
connection: Optional[KeycloakOpenIDConnection] = None, |
|
|
|
): |
|
|
|
"""Init method. |
|
|
|
|
|
|
|