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.")