diff options
Diffstat (limited to 'src/buildstream/_platform')
-rw-r--r-- | src/buildstream/_platform/platform.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/buildstream/_platform/platform.py b/src/buildstream/_platform/platform.py index f3a9964d1..dddb52bd4 100644 --- a/src/buildstream/_platform/platform.py +++ b/src/buildstream/_platform/platform.py @@ -266,18 +266,18 @@ class Platform: # Buildbox run sandbox methods def _check_sandbox_config_buildboxrun(self, config): - from ..sandbox._sandboxbuildboxrun import SandboxBuildBoxRun + from ..sandbox._sandboxbuildboxrun import SandboxBuildBoxRun # pylint: disable=cyclic-import SandboxBuildBoxRun.check_sandbox_config(self, config) @staticmethod def _create_buildboxrun_sandbox(*args, **kwargs): - from ..sandbox._sandboxbuildboxrun import SandboxBuildBoxRun + from ..sandbox._sandboxbuildboxrun import SandboxBuildBoxRun # pylint: disable=cyclic-import return SandboxBuildBoxRun(*args, **kwargs) def setup_buildboxrun_sandbox(self): - from ..sandbox._sandboxbuildboxrun import SandboxBuildBoxRun + from ..sandbox._sandboxbuildboxrun import SandboxBuildBoxRun # pylint: disable=cyclic-import self._check_sandbox(SandboxBuildBoxRun) self.check_sandbox_config = self._check_sandbox_config_buildboxrun |