Fix linting

This commit is contained in:
Yohann D'ANELLO
2021-01-10 19:17:04 +01:00
parent f4965039ee
commit cddff5c2d9
2 changed files with 6 additions and 8 deletions

View File

@ -53,7 +53,8 @@ class KeyValues(Enum):
DANCE = auto()
@staticmethod
def translate_key(key: str, settings: Settings) -> Optional["KeyValues"]:
def translate_key(key: str, settings: Settings) \
-> Optional["KeyValues"]: # noqa: C901
"""
Translates the raw string key into an enum value that we can use.
"""
@ -91,4 +92,3 @@ class KeyValues(Enum):
return KeyValues.LAUNCH
elif key == settings.KEY_DANCE:
return KeyValues.DANCE
return None