Skip to content

Commit

Permalink
Reorder imports in test_runner.py
Browse files Browse the repository at this point in the history
  • Loading branch information
shanejbrown committed Aug 21, 2024
1 parent ef90d4a commit 9d0881c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_runner.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
from buildrunner.docker.daemon import DAEMON_IMAGE_NAME
from buildrunner import docker as buildrunner_docker
import os
import sys
import docker.errors

sys.path.insert(0, os.path.realpath(os.path.join(os.path.dirname(__file__), "..")))

import buildrunner.config.loader # noqa: E402
from buildrunner.docker.daemon import DAEMON_IMAGE_NAME # noqa: E402
from buildrunner import docker as buildrunner_docker # noqa: E402
from buildrunner import ( # noqa: E402
cli,
__version__,
Expand Down

0 comments on commit 9d0881c

Please sign in to comment.