From 52a53c97e5bc71ba633d65c8466f6cdd6e562c87 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Thu, 7 Jan 2021 14:39:42 +0100 Subject: [PATCH] support/scripts/pkg-stats: fix flake8 warnings Fixes: support/scripts/pkg-stats:148:17: E741 ambiguous variable name 'l' support/scripts/pkg-stats:379:9: E741 ambiguous variable name 'l' Signed-off-by: Thomas Petazzoni --- support/scripts/pkg-stats | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/support/scripts/pkg-stats b/support/scripts/pkg-stats index e549a0ac54..d222ba37c3 100755 --- a/support/scripts/pkg-stats +++ b/support/scripts/pkg-stats @@ -144,8 +144,8 @@ class Package: self.infras = list() with open(os.path.join(brpath, self.path), 'r') as f: lines = f.readlines() - for l in lines: - match = INFRA_RE.match(l) + for line in lines: + match = INFRA_RE.match(line) if not match: continue infra = match.group(1) -- 2.30.2