From 5f74d80267f083f05d57cb2c2724236d2202ce11 Mon Sep 17 00:00:00 2001 From: Blallo Date: Tue, 5 Feb 2019 09:07:46 +0100 Subject: [PATCH] Black --- bot_z/cli.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/bot_z/cli.py b/bot_z/cli.py index 1142d67..00d4915 100644 --- a/bot_z/cli.py +++ b/bot_z/cli.py @@ -130,13 +130,19 @@ def start_daemon_command( @cli.command("list") -@click.option("-s", "--status", is_flag=True, default=False, help="Show also the status of each client.") +@click.option( + "-s", + "--status", + is_flag=True, + default=False, + help="Show also the status of each client.", +) @click.pass_context def list_command(ctx: click.Context, status: bool) -> None: """ Shows the clients attached """ - logger.debug("Invoked the \"list\" command.") + logger.debug('Invoked the "list" command.') with PLifo(ctx.obj["lifo"]) as lifo: if len(lifo) == 0: logger.info("No clients.")