From: Thomas Petazzoni Date: Sun, 12 Jul 2020 19:23:13 +0000 (+0200) Subject: support/scripts/pkg-stats: fix flake8 warning X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=204d03ae43bcf9578e2d356a9a243c78eddf3453;p=buildroot.git support/scripts/pkg-stats: fix flake8 warning This fixes the following flake8 warning: support/scripts/pkg-stats:1005:9: E117 over-indented Signed-off-by: Thomas Petazzoni --- diff --git a/support/scripts/pkg-stats b/support/scripts/pkg-stats index 170f99e7fc..ec4d538758 100755 --- a/support/scripts/pkg-stats +++ b/support/scripts/pkg-stats @@ -1002,7 +1002,7 @@ def dump_json(packages, defconfigs, stats, date, commit, output): def resolvepath(path): - return os.path.abspath(os.path.expanduser(path)) + return os.path.abspath(os.path.expanduser(path)) def parse_args():