Coverage for tests/test_cli/commands/example.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.2.7, created at 2024-04-28 15:17 +0000

1import click 

2 

3 

4@click.command() 

5def cli() -> None: 

6 """Example command""" 

7 click.echo('Hello from example command!')