Skip to content

Commit

Permalink
Update orion.py
Browse files Browse the repository at this point in the history
  • Loading branch information
vishnuchalla authored Aug 8, 2024
1 parent 08cef10 commit 2af6432
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion orion.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class MutuallyExclusiveOption(click.Option):
"""

def __init__(self, *args: tuple, **kwargs: dict[str, dict]) -> None:
self.mutually_exclusive = set(kwargs.pop("mutually_exclusive", []))
self.mutually_exclusive = set(kwargs.pop("mutually_exclusive.", []))
help = kwargs.get("help", "") # pylint: disable=redefined-builtin
if self.mutually_exclusive:
ex_str = ", ".join(self.mutually_exclusive)
Expand Down

0 comments on commit 2af6432

Please sign in to comment.