Browse Source

support/scripts/pkg-stats: fix flake8 E117 warning

Fixes:

  support/scripts/pkg-stats:146:17: E117 over-indented

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
(cherry picked from commit 198d76efb35c84b397c1e960cc454f4988f50eb7)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Thomas Petazzoni 5 years ago
parent
commit
903b4fa920
1 changed files with 1 additions and 1 deletions
  1. 1 1
      support/scripts/pkg-stats

+ 1 - 1
support/scripts/pkg-stats

@@ -143,7 +143,7 @@ class Package:
             if self.infras[0][1] == 'virtual':
                 return False
         except IndexError:
-                return False
+            return False
         return True
 
     def set_infra(self):