diff options
author | Adrian Freihofer <adrian.freihofer@gmail.com> | 2024-02-08 09:27:27 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-02-08 23:14:51 +0000 |
commit | 233d2d8c0d29fb7efbe278922b9fa0651fec87e9 (patch) | |
tree | 053db7cc69c1ce49ae90c3a45aaf7e57194339ab /scripts/lib | |
parent | be94979c6972b4a2548c1828a6310c15c13cc895 (diff) | |
download | poky-233d2d8c0d29fb7efbe278922b9fa0651fec87e9.tar.gz |
recipetool: cleanup imports
- os is missing
- glob is not used
(From OE-Core rev: f560bc8972e97d2e497d7b976586e4a79ffc74ec)
Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib')
-rw-r--r-- | scripts/lib/recipetool/create_buildsys.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/recipetool/create_buildsys.py b/scripts/lib/recipetool/create_buildsys.py index 5015634476..d4b194f567 100644 --- a/scripts/lib/recipetool/create_buildsys.py +++ b/scripts/lib/recipetool/create_buildsys.py | |||
@@ -5,9 +5,9 @@ | |||
5 | # SPDX-License-Identifier: GPL-2.0-only | 5 | # SPDX-License-Identifier: GPL-2.0-only |
6 | # | 6 | # |
7 | 7 | ||
8 | import os | ||
8 | import re | 9 | import re |
9 | import logging | 10 | import logging |
10 | import glob | ||
11 | from recipetool.create import RecipeHandler, validate_pv | 11 | from recipetool.create import RecipeHandler, validate_pv |
12 | 12 | ||
13 | logger = logging.getLogger('recipetool') | 13 | logger = logging.getLogger('recipetool') |