Skip to content
This repository has been archived by the owner on Apr 24, 2023. It is now read-only.

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mpcusack-color authored Aug 16, 2021
1 parent 0febbb8 commit 8f5279b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clr/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def enum_parser(arg):
arg = arg.upper()
assert (
arg in param.annotation.__members__
), f"Arg ({param.name}={arg}) must be one of {tuple(annotation.__members__.keys())}."
), f"Arg ({param.name}={arg}) must be one of {tuple(param.annotation.__members__.keys())}."
return param.annotation.__members__[arg]

return enum_parser
Expand Down

0 comments on commit 8f5279b

Please sign in to comment.