fix: resolve CI linting and type checking errors
Some checks failed
CI / test (push) Has been cancelled
Some checks failed
CI / test (push) Has been cancelled
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
"""CLI interface for {{ project_name }}.
|
"""CLI module for {{ project_name }}.
|
||||||
|
|
||||||
Generated from GitHub Issue #{{ issue_number }}
|
Generated from GitHub Issue #{{ issue_number }}
|
||||||
"""
|
"""
|
||||||
@@ -7,7 +7,10 @@ import click
|
|||||||
|
|
||||||
|
|
||||||
@click.command()
|
@click.command()
|
||||||
@click.option("--option", help="TODO: Describe option")
|
def cli():
|
||||||
def cli(option: str):
|
|
||||||
"""TODO: Implement CLI command."""
|
"""TODO: Implement CLI command."""
|
||||||
click.echo("{{ project_name }} CLI")
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
cli()
|
||||||
|
|||||||
Reference in New Issue
Block a user