Skip to content

Commit 4aeb4f7

Browse files
authored
Merge pull request #20 from git-mastery/woojiahao/minor-change
Add typing
2 parents 5216a7f + 3adfb7b commit 4aeb4f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def invoke(self, ctx: click.Context) -> None:
2121
@click.group(cls=LoggingGroup)
2222
@click.option("--verbose", "-v", is_flag=True, help="Enable verbose output")
2323
@click.pass_context
24-
def cli(ctx, verbose) -> None:
24+
def cli(ctx: click.Context, verbose: bool) -> None:
2525
"""Git-Mastery app"""
2626
ctx.ensure_object(dict)
2727

0 commit comments

Comments
 (0)