From: Adrian Freihofer Date: Thu, 8 Feb 2024 08:27:27 +0000 (+0100) Subject: recipetool: cleanup imports X-Git-Tag: uninative-4.4~189 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f560bc8972e97d2e497d7b976586e4a79ffc74ec;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git recipetool: cleanup imports - os is missing - glob is not used Signed-off-by: Adrian Freihofer Signed-off-by: Richard Purdie --- diff --git a/scripts/lib/recipetool/create_buildsys.py b/scripts/lib/recipetool/create_buildsys.py index 5015634476a..d4b194f5679 100644 --- a/scripts/lib/recipetool/create_buildsys.py +++ b/scripts/lib/recipetool/create_buildsys.py @@ -5,9 +5,9 @@ # SPDX-License-Identifier: GPL-2.0-only # +import os import re import logging -import glob from recipetool.create import RecipeHandler, validate_pv logger = logging.getLogger('recipetool')