diff options
author | Devaev Maxim <[email protected]> | 2019-09-28 05:45:53 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2019-09-28 05:45:53 +0300 |
commit | 31c74a1c3020710fb1878a24c8dc8fda71e3fa2e (patch) | |
tree | 84519ccaf5c16acd1d6956c0688f876756dd980e /kvmd/plugins/hid/serial.py | |
parent | ebe1255921742fa0ed93c7f8eff7ddc7437025be (diff) |
mypy fix
Diffstat (limited to 'kvmd/plugins/hid/serial.py')
-rw-r--r-- | kvmd/plugins/hid/serial.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kvmd/plugins/hid/serial.py b/kvmd/plugins/hid/serial.py index 5b78e5a9..5edf50a8 100644 --- a/kvmd/plugins/hid/serial.py +++ b/kvmd/plugins/hid/serial.py @@ -167,7 +167,7 @@ class Plugin(BaseHid, multiprocessing.Process): # pylint: disable=too-many-inst self.__stop_event = multiprocessing.Event() @classmethod - def get_plugin_options(cls) -> Dict[str, Option]: + def get_plugin_options(cls) -> Dict: return { "reset_pin": Option(-1, type=valid_gpio_pin), "reset_delay": Option(0.1, type=valid_float_f01), |