From 7031c68a85187881f307954cbca8d5e20d9e31c9 Mon Sep 17 00:00:00 2001 From: linpeiyu164 Date: Sat, 11 Mar 2023 00:07:24 +0800 Subject: [PATCH] fix wrong indentation level for args.backend --- capa/main.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/capa/main.py b/capa/main.py index ba03c7a4..617df71f 100644 --- a/capa/main.py +++ b/capa/main.py @@ -853,15 +853,15 @@ def install_common_args(parser, wanted=None): help="select sample format, %s" % format_help, ) - if "backend" in wanted: - parser.add_argument( - "-b", - "--backend", - type=str, - help="select the backend to use", - choices=(BACKEND_VIV,), - default=BACKEND_VIV, - ) + if "backend" in wanted: + parser.add_argument( + "-b", + "--backend", + type=str, + help="select the backend to use", + choices=(BACKEND_VIV,), + default=BACKEND_VIV, + ) if "rules" in wanted: parser.add_argument(