Fix white-space

This commit is contained in:
up-n-atom
2023-09-13 19:21:12 -04:00
committed by GitHub
parent cfe5796845
commit 5fdfd58dba
-1
View File
@@ -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)