From 2af643206dd32a893f11d4670a7f4f527075182b Mon Sep 17 00:00:00 2001 From: vishnuchalla Date: Thu, 8 Aug 2024 10:58:01 -0400 Subject: [PATCH] Update orion.py --- orion.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orion.py b/orion.py index eb73488..da49c49 100644 --- a/orion.py +++ b/orion.py @@ -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)