diff options
author | Benjamin Schubert <ben.c.schubert@gmail.com> | 2019-03-09 10:51:46 +0000 |
---|---|---|
committer | Benjamin Schubert <ben.c.schubert@gmail.com> | 2019-03-20 09:38:41 +0000 |
commit | 7474ed1f38b7b750e1cd2b5ebbfe9fc0f3f3d364 (patch) | |
tree | f702fec85230e29ed0a9b709d1760249a58e5901 /tests/frontend/workspace.py | |
parent | 180b8ada3922f7a1b139d76559ebece2bb54579f (diff) | |
download | buildstream-7474ed1f38b7b750e1cd2b5ebbfe9fc0f3f3d364.tar.gz |
tests:lint: reorder imports for consistency
- Remove all wrong-import-order from pylint
- Order some subgroups of imports
Diffstat (limited to 'tests/frontend/workspace.py')
-rw-r--r-- | tests/frontend/workspace.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/frontend/workspace.py b/tests/frontend/workspace.py index f0ce48eb9..374d62ae8 100644 --- a/tests/frontend/workspace.py +++ b/tests/frontend/workspace.py @@ -26,9 +26,11 @@ import os import stat -import pytest import shutil import subprocess + +import pytest + from tests.testutils import create_repo, ALL_REPO_KINDS, wait_for_cache_granularity from tests.testutils import create_artifact_share, create_element_size |