fix: resolve CI linting and type checking errors
Some checks failed
CI / test (push) Has been cancelled

This commit is contained in:
2026-02-04 05:58:02 +00:00
parent fbaa1a90f6
commit 0fbdfc80ee

View File

@@ -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()