support/scripts/pkg-stats: fix flake8 E402 warning
authorThomas Petazzoni <thomas.petazzoni@bootlin.com>
Tue, 24 Mar 2020 13:24:44 +0000 (14:24 +0100)
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>
Tue, 24 Mar 2020 14:27:53 +0000 (15:27 +0100)
commit769f98c18c94d6d684bb2efc00239ce07a02d522
treeef24f91421426282bfaa05bdb489e7b8755fb3c2
parentf45a81dbb1ecce8f1c598ac009702122cfdc7a15
support/scripts/pkg-stats: fix flake8 E402 warning

flake8 complains with:

pkg-stats:38:1: E402 module level import not at top of file

This is due to sys.path.append() being before the import from
getdeveloperlib, but we really need this sys.path.append() to be
before, so let's ignore this flake8 warning.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
support/scripts/pkg-stats