summaryrefslogtreecommitdiff
path: root/tests/sources/git.py
diff options
context:
space:
mode:
authorBenjamin Schubert <contact@benschubert.me>2020-07-03 11:33:17 +0100
committerBenjamin Schubert <contact@benschubert.me>2020-07-03 11:46:29 +0100
commit2833a6abd562a628f4039e74a1dadf12661d2b6d (patch)
tree874362f70d15e42babc6f9c578d6822b8efee0f8 /tests/sources/git.py
parent94dcc28121a57f5e292ce653ef4b760a7ad3b6a4 (diff)
downloadbuildstream-bschubert/isort.tar.gz
setup.cfg: Use isort to sort our importsbschubert/isort
Diffstat (limited to 'tests/sources/git.py')
-rw-r--r--tests/sources/git.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/sources/git.py b/tests/sources/git.py
index 033db1bf9..d6ac46e99 100644
--- a/tests/sources/git.py
+++ b/tests/sources/git.py
@@ -24,8 +24,8 @@
# pylint: disable=redefined-outer-name
import os
-import subprocess
import shutil
+import subprocess
import pytest
@@ -33,8 +33,7 @@ from buildstream import Node
from buildstream.exceptions import ErrorDomain
from buildstream.plugin import CoreWarnings
from buildstream.testing import cli # pylint: disable=unused-import
-from buildstream.testing import generate_project, generate_element, load_yaml
-from buildstream.testing import create_repo
+from buildstream.testing import create_repo, generate_element, generate_project, load_yaml
from buildstream.testing._utils.site import HAVE_GIT, HAVE_OLD_GIT
DATA_DIR = os.path.join(os.path.dirname(os.path.realpath(__file__)), "git",)