This commit is contained in:
Manuel Barkhau 2022-06-08 19:24:45 +00:00 committed by mbarkhau
parent 5a2f90bce3
commit 0d8b6a5538

View file

@ -246,7 +246,7 @@ def version_options(function: typ.Callable) -> typ.Callable:
return decorated
@click.group(context_settings={"help_option_names": ["-h", "--help"]})
@click.group(context_settings={'help_option_names': ["-h", "--help"]})
@click.version_option(version="2022.1116")
@verbose_option
def cli(verbose: int = 0) -> None: