summaryrefslogtreecommitdiff
path: root/kvmd/plugins/auth/htpasswd.py
diff options
context:
space:
mode:
Diffstat (limited to 'kvmd/plugins/auth/htpasswd.py')
-rw-r--r--kvmd/plugins/auth/htpasswd.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/kvmd/plugins/auth/htpasswd.py b/kvmd/plugins/auth/htpasswd.py
index 51364a18..1e3b1010 100644
--- a/kvmd/plugins/auth/htpasswd.py
+++ b/kvmd/plugins/auth/htpasswd.py
@@ -20,8 +20,6 @@
# ========================================================================== #
-from typing import Dict
-
import passlib.apache
from ...yamlconf import Option
@@ -37,7 +35,7 @@ class Plugin(BaseAuthService):
self.__path = path
@classmethod
- def get_plugin_options(cls) -> Dict:
+ def get_plugin_options(cls) -> dict:
return {
"file": Option("/etc/kvmd/htpasswd", type=valid_abs_file, unpack_as="path"),
}