diff options
Diffstat (limited to 'kvmd/plugins/auth/radius.py')
-rw-r--r-- | kvmd/plugins/auth/radius.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/kvmd/plugins/auth/radius.py b/kvmd/plugins/auth/radius.py index b3bd94cc..d7c6390e 100644 --- a/kvmd/plugins/auth/radius.py +++ b/kvmd/plugins/auth/radius.py @@ -22,8 +22,6 @@ import io -from typing import Dict - import pyrad.client import pyrad.packet import pyrad.dictionary @@ -413,7 +411,7 @@ class Plugin(BaseAuthService): self.__timeout = timeout @classmethod - def get_plugin_options(cls) -> Dict: + def get_plugin_options(cls) -> dict: return { "host": Option("localhost", type=valid_ip_or_host), "port": Option(1812, type=valid_port), |