summaryrefslogtreecommitdiff
path: root/tests/internals/yaml.py
diff options
context:
space:
mode:
authorBenjamin Schubert <ben.c.schubert@gmail.com>2019-03-09 10:51:46 +0000
committerBenjamin Schubert <ben.c.schubert@gmail.com>2019-03-20 09:38:41 +0000
commit7474ed1f38b7b750e1cd2b5ebbfe9fc0f3f3d364 (patch)
treef702fec85230e29ed0a9b709d1760249a58e5901 /tests/internals/yaml.py
parent180b8ada3922f7a1b139d76559ebece2bb54579f (diff)
downloadbuildstream-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/internals/yaml.py')
-rw-r--r--tests/internals/yaml.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/internals/yaml.py b/tests/internals/yaml.py
index a7b4457e3..4870b5180 100644
--- a/tests/internals/yaml.py
+++ b/tests/internals/yaml.py
@@ -1,7 +1,8 @@
+from collections.abc import Mapping
import os
-import pytest
import tempfile
-from collections.abc import Mapping
+
+import pytest
from buildstream import _yaml
from buildstream._exceptions import LoadError, LoadErrorReason