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/msd | |
parent | ebe1255921742fa0ed93c7f8eff7ddc7437025be (diff) |
mypy fix
Diffstat (limited to 'kvmd/plugins/msd')
-rw-r--r-- | kvmd/plugins/msd/relay.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kvmd/plugins/msd/relay.py b/kvmd/plugins/msd/relay.py index c6b755fb..d53e0720 100644 --- a/kvmd/plugins/msd/relay.py +++ b/kvmd/plugins/msd/relay.py @@ -198,7 +198,7 @@ class Plugin(BaseMsd): # pylint: disable=too-many-instance-attributes log("MSD is offline: %s", err) @classmethod - def get_plugin_options(cls) -> Dict[str, Option]: + def get_plugin_options(cls) -> Dict: return { "target_pin": Option(-1, type=valid_gpio_pin), "reset_pin": Option(-1, type=valid_gpio_pin), |