diff options
Diffstat (limited to 'kvmd/plugins/auth/__init__.py')
-rw-r--r-- | kvmd/plugins/auth/__init__.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/kvmd/plugins/auth/__init__.py b/kvmd/plugins/auth/__init__.py index 59a59a13..c532829c 100644 --- a/kvmd/plugins/auth/__init__.py +++ b/kvmd/plugins/auth/__init__.py @@ -20,8 +20,6 @@ # ========================================================================== # -from typing import Type - from .. import BasePlugin from .. import get_plugin_class @@ -36,5 +34,5 @@ class BaseAuthService(BasePlugin): # ===== -def get_auth_service_class(name: str) -> Type[BaseAuthService]: +def get_auth_service_class(name: str) -> type[BaseAuthService]: return get_plugin_class("auth", name) # type: ignore |