diff options
author | Jürg Billeter <j@bitron.ch> | 2018-02-27 06:12:41 +0100 |
---|---|---|
committer | Tristan Van Berkom <tristan.van.berkom@gmail.com> | 2018-02-27 11:43:18 +0000 |
commit | 14c81d99ca3bcff3b7daf24500e061cc65ed7f9d (patch) | |
tree | b831b42ef29b90139037f1e1effb368534f4f333 | |
parent | e691060061938fa932d47119090d000abde6249a (diff) | |
download | buildstream-14c81d99ca3bcff3b7daf24500e061cc65ed7f9d.tar.gz |
Remove unused _KeyStrength imports
-rw-r--r-- | buildstream/_artifactcache/ostreecache.py | 1 | ||||
-rw-r--r-- | buildstream/_artifactcache/tarcache.py | 1 | ||||
-rw-r--r-- | buildstream/_scheduler/pullqueue.py | 3 |
3 files changed, 0 insertions, 5 deletions
diff --git a/buildstream/_artifactcache/ostreecache.py b/buildstream/_artifactcache/ostreecache.py index 3053cdd65..fb1f772a3 100644 --- a/buildstream/_artifactcache/ostreecache.py +++ b/buildstream/_artifactcache/ostreecache.py @@ -26,7 +26,6 @@ import tempfile from .. import _ostree, _signals, utils from .._exceptions import ArtifactError -from ..element import _KeyStrength from .._ostree import OSTreeError from . import ArtifactCache diff --git a/buildstream/_artifactcache/tarcache.py b/buildstream/_artifactcache/tarcache.py index 1806725d8..ea01d378d 100644 --- a/buildstream/_artifactcache/tarcache.py +++ b/buildstream/_artifactcache/tarcache.py @@ -24,7 +24,6 @@ import tarfile import subprocess from .. import utils, ProgramNotFoundError -from ..element import _KeyStrength from .._exceptions import ArtifactError from . import ArtifactCache diff --git a/buildstream/_scheduler/pullqueue.py b/buildstream/_scheduler/pullqueue.py index 4cc0f8a1b..458c65e92 100644 --- a/buildstream/_scheduler/pullqueue.py +++ b/buildstream/_scheduler/pullqueue.py @@ -19,9 +19,6 @@ # Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> # Jürg Billeter <juerg.billeter@codethink.co.uk> -# BuildStream toplevel imports -from ..element import _KeyStrength - # Local imports from . import Queue, QueueStatus, QueueType |