diff options
| author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2016-09-16 17:22:34 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-21 21:58:06 +0100 |
| commit | ad04a6324e8fd6c6de87bad6a366d7077835947c (patch) | |
| tree | 183cc4b6d3263981a50c8a399dc7c30b45564f0f | |
| parent | 5e88c4a6fe8a295c7282b7308ccd2019c73d2f5d (diff) | |
| download | poky-ad04a6324e8fd6c6de87bad6a366d7077835947c.tar.gz | |
bitbake: runbuilds: code cleanup - remove unused imports
Fixed pylint warning: W0611(unused-import): Unused import
(Bitbake rev: 49731a1a2b2b63c1a897d2e33bca4968524e8710)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Michael Wood <michael.g.wood@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | bitbake/lib/toaster/bldcontrol/management/commands/runbuilds.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/bitbake/lib/toaster/bldcontrol/management/commands/runbuilds.py b/bitbake/lib/toaster/bldcontrol/management/commands/runbuilds.py index 3421726e84..7f7a5a9555 100644 --- a/bitbake/lib/toaster/bldcontrol/management/commands/runbuilds.py +++ b/bitbake/lib/toaster/bldcontrol/management/commands/runbuilds.py | |||
| @@ -1,17 +1,14 @@ | |||
| 1 | from django.core.management.base import NoArgsCommand, CommandError | 1 | from django.core.management.base import NoArgsCommand |
| 2 | from django.db import transaction | 2 | from django.db import transaction |
| 3 | from django.db.models import Q | 3 | from django.db.models import Q |
| 4 | 4 | ||
| 5 | from bldcontrol.bbcontroller import getBuildEnvironmentController | 5 | from bldcontrol.bbcontroller import getBuildEnvironmentController |
| 6 | from bldcontrol.bbcontroller import ShellCmdException, BuildSetupException | ||
| 7 | from bldcontrol.models import BuildRequest, BuildEnvironment | 6 | from bldcontrol.models import BuildRequest, BuildEnvironment |
| 8 | from bldcontrol.models import BRError, BRVariable | 7 | from bldcontrol.models import BRError, BRVariable |
| 9 | 8 | ||
| 10 | from orm.models import Build, ToasterSetting, LogMessage, Target | 9 | from orm.models import Build, LogMessage, Target |
| 11 | 10 | ||
| 12 | import os | ||
| 13 | import logging | 11 | import logging |
| 14 | import sys | ||
| 15 | import traceback | 12 | import traceback |
| 16 | import signal | 13 | import signal |
| 17 | 14 | ||
