diff options
author | Gökçen Nurlu <gnurlu1@bloomberg.net> | 2017-12-05 16:09:39 +0000 |
---|---|---|
committer | Gökçen Nurlu <gnurlu1@bloomberg.net> | 2017-12-07 14:25:40 +0000 |
commit | 7674f6a137541072bfe60a77502d67698b47b703 (patch) | |
tree | 0212d5f6cbb70d2eedcfbe7a058b1db44eeec79a /buildstream/_frontend/widget.py | |
parent | 3d973142f8ae27c0ba5618d79ad416925b81df90 (diff) | |
download | buildstream-7674f6a137541072bfe60a77502d67698b47b703.tar.gz |
Remove unused imports
Diffstat (limited to 'buildstream/_frontend/widget.py')
-rw-r--r-- | buildstream/_frontend/widget.py | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/buildstream/_frontend/widget.py b/buildstream/_frontend/widget.py index 1d7a5ecc8..ccda68b6b 100644 --- a/buildstream/_frontend/widget.py +++ b/buildstream/_frontend/widget.py @@ -17,22 +17,22 @@ # # Authors: # Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> -import os -import click -import subprocess import datetime -import pkg_resources +import os from collections import OrderedDict from contextlib import ExitStack -from ruamel import yaml from mmap import mmap -from .. import utils, _yaml -from ..plugin import _plugin_lookup -from .._message import MessageType -from .._exceptions import ImplError -from .. import Element, Scope, Consistency +import click +import pkg_resources +from ruamel import yaml + from . import Profile +from .. import Element, Scope, Consistency +from .. import _yaml +from .._exceptions import ImplError +from .._message import MessageType +from ..plugin import _plugin_lookup # Widget() |