blob: 6b822c13147a05f06ccef8b3c0a1c7df2a34cda0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
from typing_extensions import assert_type
import click
@click.command()
@click.help_option("-h", "--help")
def hello() -> None:
"""Simple program that greets NAME for a total of COUNT times."""
click.echo("Hello!")
assert_type(hello, click.Command)
|