Skip to content

Commit

Permalink
Merge pull request #49 from alexott/help-short-option
Browse files Browse the repository at this point in the history
Add the short option for help command: `-h`
  • Loading branch information
thomaspatzke authored Jun 27, 2024
2 parents 765fd2b + 739f07d commit 678f8e1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion sigma/cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,12 @@
from .pysigma import check_pysigma_command


@click.group()
CONTEXT_SETTINGS={
"help_option_names": ['-h', '--help']
}


@click.group(context_settings=CONTEXT_SETTINGS)
def cli():
pass

Expand Down

0 comments on commit 678f8e1

Please sign in to comment.