Browse Source
chore: correct argument type hint in send_update_account and a_send_update_account (#673)
master
takapdayon
5 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
2 deletions
-
src/keycloak/keycloak_admin.py
|
|
|
@ -1677,7 +1677,7 @@ class KeycloakAdmin: |
|
|
|
def send_update_account( |
|
|
|
self, |
|
|
|
user_id: str, |
|
|
|
payload: dict, |
|
|
|
payload: list, |
|
|
|
client_id: str | None = None, |
|
|
|
lifespan: int | None = None, |
|
|
|
redirect_uri: str | None = None, |
|
|
|
@ -6961,7 +6961,7 @@ class KeycloakAdmin: |
|
|
|
async def a_send_update_account( |
|
|
|
self, |
|
|
|
user_id: str, |
|
|
|
payload: dict, |
|
|
|
payload: list, |
|
|
|
client_id: str | None = None, |
|
|
|
lifespan: int | None = None, |
|
|
|
redirect_uri: str | None = None, |
|
|
|
|