diff options
author | Benjamin Schubert <contact@benschubert.me> | 2020-07-03 11:33:17 +0100 |
---|---|---|
committer | Benjamin Schubert <contact@benschubert.me> | 2020-07-03 11:46:29 +0100 |
commit | 2833a6abd562a628f4039e74a1dadf12661d2b6d (patch) | |
tree | 874362f70d15e42babc6f9c578d6822b8efee0f8 /src/buildstream/_frontend/cli.py | |
parent | 94dcc28121a57f5e292ce653ef4b760a7ad3b6a4 (diff) | |
download | buildstream-bschubert/isort.tar.gz |
setup.cfg: Use isort to sort our importsbschubert/isort
Diffstat (limited to 'src/buildstream/_frontend/cli.py')
-rw-r--r-- | src/buildstream/_frontend/cli.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/buildstream/_frontend/cli.py b/src/buildstream/_frontend/cli.py index d5fa47091..26dc6ec7c 100644 --- a/src/buildstream/_frontend/cli.py +++ b/src/buildstream/_frontend/cli.py @@ -1,15 +1,15 @@ import os +import shutil import sys from functools import partial -import shutil import click + from .. import _yaml -from .._exceptions import BstError, LoadError, AppError -from .complete import main_bashcomplete, complete_path, CompleteUnhandled -from ..types import _CacheBuildTrees, _SchedulerErrorAction, _PipelineSelection +from .._exceptions import AppError, BstError, LoadError +from ..types import _CacheBuildTrees, _PipelineSelection, _SchedulerErrorAction from ..utils import UtilError - +from .complete import CompleteUnhandled, complete_path, main_bashcomplete ################################################################## # Helper classes and methods for Click # |