summaryrefslogtreecommitdiff
path: root/buildstream/_platform/platform.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildstream/_platform/platform.py')
-rw-r--r--buildstream/_platform/platform.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/buildstream/_platform/platform.py b/buildstream/_platform/platform.py
index 73ed571fe..eef07812a 100644
--- a/buildstream/_platform/platform.py
+++ b/buildstream/_platform/platform.py
@@ -50,11 +50,11 @@ class Platform():
backend = 'unix'
if backend == 'linux':
- from .linux import Linux as PlatformImpl
+ from .linux import Linux as PlatformImpl # pylint: disable=cyclic-import
elif backend == 'darwin':
- from .darwin import Darwin as PlatformImpl
+ from .darwin import Darwin as PlatformImpl # pylint: disable=cyclic-import
elif backend == 'unix':
- from .unix import Unix as PlatformImpl
+ from .unix import Unix as PlatformImpl # pylint: disable=cyclic-import
else:
raise PlatformError("No such platform: '{}'".format(backend))