summaryrefslogtreecommitdiff
path: root/examples/complex/complex/commands/cmd_status.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/complex/complex/commands/cmd_status.py')
-rw-r--r--examples/complex/complex/commands/cmd_status.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/examples/complex/complex/commands/cmd_status.py b/examples/complex/complex/commands/cmd_status.py
index 12229c4..92275bb 100644
--- a/examples/complex/complex/commands/cmd_status.py
+++ b/examples/complex/complex/commands/cmd_status.py
@@ -1,10 +1,11 @@
-import click
from complex.cli import pass_environment
+import click
+
-@click.command('status', short_help='Shows file changes.')
+@click.command("status", short_help="Shows file changes.")
@pass_environment
def cli(ctx):
"""Shows file changes in the current working directory."""
- ctx.log('Changed files: none')
- ctx.vlog('bla bla bla, debug info')
+ ctx.log("Changed files: none")
+ ctx.vlog("bla bla bla, debug info")