summaryrefslogtreecommitdiff
path: root/kvmd/plugins/auth/__init__.py
diff options
context:
space:
mode:
authorMaxim Devaev <[email protected]>2022-09-04 18:08:40 +0300
committerMaxim Devaev <[email protected]>2022-09-04 18:08:40 +0300
commitee3e224e396494cd0d69bb6167087a071a20349c (patch)
tree5becd28570e58a03c6e1e231d0db24c264a73f88 /kvmd/plugins/auth/__init__.py
parent4b75221e9470b4a009955d7677f16adf8e23e302 (diff)
new typing style
Diffstat (limited to 'kvmd/plugins/auth/__init__.py')
-rw-r--r--kvmd/plugins/auth/__init__.py4
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