From 204d03ae43bcf9578e2d356a9a243c78eddf3453 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Sun, 12 Jul 2020 21:23:13 +0200 Subject: [PATCH] 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 --- support/scripts/pkg-stats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(): -- 2.30.2