Browse Source

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 <thomas.petazzoni@bootlin.com>
Thomas Petazzoni 4 years ago
parent
commit
52a53c97e5
1 changed files with 2 additions and 2 deletions
  1. 2 2
      support/scripts/pkg-stats

+ 2 - 2
support/scripts/pkg-stats

@@ -144,8 +144,8 @@ class Package:
         self.infras = list()
         self.infras = list()
         with open(os.path.join(brpath, self.path), 'r') as f:
         with open(os.path.join(brpath, self.path), 'r') as f:
             lines = f.readlines()
             lines = f.readlines()
-            for l in lines:
-                match = INFRA_RE.match(l)
+            for line in lines:
+                match = INFRA_RE.match(line)
                 if not match:
                 if not match:
                     continue
                     continue
                 infra = match.group(1)
                 infra = match.group(1)