From: Ed Bartosh Date: Fri, 16 Sep 2016 16:22:34 +0000 (+0100) Subject: runbuilds: code cleanup - remove unused imports X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=49731a1a2b2b63c1a897d2e33bca4968524e8710;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git runbuilds: code cleanup - remove unused imports Fixed pylint warning: W0611(unused-import): Unused import Signed-off-by: Ed Bartosh Signed-off-by: Michael Wood Signed-off-by: Richard Purdie --- diff --git a/lib/toaster/bldcontrol/management/commands/runbuilds.py b/lib/toaster/bldcontrol/management/commands/runbuilds.py index 3421726e847..7f7a5a95556 100644 --- a/lib/toaster/bldcontrol/management/commands/runbuilds.py +++ b/lib/toaster/bldcontrol/management/commands/runbuilds.py @@ -1,17 +1,14 @@ -from django.core.management.base import NoArgsCommand, CommandError +from django.core.management.base import NoArgsCommand from django.db import transaction from django.db.models import Q from bldcontrol.bbcontroller import getBuildEnvironmentController -from bldcontrol.bbcontroller import ShellCmdException, BuildSetupException from bldcontrol.models import BuildRequest, BuildEnvironment from bldcontrol.models import BRError, BRVariable -from orm.models import Build, ToasterSetting, LogMessage, Target +from orm.models import Build, LogMessage, Target -import os import logging -import sys import traceback import signal