From b95a7e6bba5127f6b073990f96693a6c5cc1374f Mon Sep 17 00:00:00 2001 From: devdanzin <74280297+devdanzin@users.noreply.github.com> Date: Fri, 27 Oct 2023 10:14:33 -0300 Subject: [PATCH] Format __main__.py. --- src/wily/__main__.py | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/src/wily/__main__.py b/src/wily/__main__.py index 14157c4f..a3cc9c1e 100644 --- a/src/wily/__main__.py +++ b/src/wily/__main__.py @@ -293,13 +293,23 @@ def rank(ctx, path, metric, revision, limit, desc, threshold, wrap, json): help=_("Wrap report text to fit in terminal"), ) @click.option( - "--json/--table", + "--json/--table", help=_("Display results as JSON"), default=False, ) @click.pass_context def report( - ctx, file, metrics, number, message, format, console_format, output, changes, wrap, json + ctx, + file, + metrics, + number, + message, + format, + console_format, + output, + changes, + wrap, + json, ): """Show metrics for a given file.""" config = ctx.obj["CONFIG"]