From 5fdfd58dba9aba7d44f58f518435538036c74dfc Mon Sep 17 00:00:00 2001 From: up-n-atom Date: Wed, 13 Sep 2023 19:21:12 -0400 Subject: [PATCH] Fix white-space --- xmo-remote-client.py | 1 - 1 file changed, 1 deletion(-) diff --git a/xmo-remote-client.py b/xmo-remote-client.py index 64af970..e6aa10b 100755 --- a/xmo-remote-client.py +++ b/xmo-remote-client.py @@ -19,7 +19,6 @@ class EnumChoice(click.Choice): def convert(self, value, param, ctx): if value is None or isinstance(value, Enum): return value - converted_str = super().convert(value, param, ctx) return self.__enum(converted_str)