Skip to content

Commit 3fd27d4

Browse files
committed
fix(cli): set case_sensitive default to False in EnumChoice
1 parent 1b23965 commit 3fd27d4

File tree

1 file changed

+1
-1
lines changed
  • packages/plugin/src/robotcode/plugin/click_helper

1 file changed

+1
-1
lines changed

packages/plugin/src/robotcode/plugin/click_helper/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class EnumChoice(click.Choice, Generic[T]):
2626
def __init__(
2727
self,
2828
choices: Type[T],
29-
case_sensitive: bool = True,
29+
case_sensitive: bool = False,
3030
excluded: Optional[Set[T]] = None,
3131
) -> None:
3232
super().__init__(

0 commit comments

Comments
 (0)