Skip to content

Commit

Permalink
fix: Add typing to keycloak admin connection
Browse files Browse the repository at this point in the history
  • Loading branch information
jackylamhk committed Oct 26, 2023
1 parent 5957607 commit 2722cdf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/keycloak/keycloak_admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
import deprecation
from requests_toolbelt import MultipartEncoder

from . import urls_patterns
from . import urls_patterns, ConnectionManager
from ._version import __version__
from .exceptions import (
KeycloakDeleteError,
Expand Down Expand Up @@ -84,7 +84,7 @@ class KeycloakAdmin:
PAGE_SIZE = 100

_auto_refresh_token = None
_connection = None
_connection: ConnectionManager | None = None

def __init__(
self,
Expand Down

0 comments on commit 2722cdf

Please sign in to comment.