From 19f0c1ff4c4a8f53a4c07f48745381d223969d31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Billeter?= Date: Wed, 26 Sep 2018 10:09:07 +0100 Subject: _platform: Remove unused context --- buildstream/_frontend/app.py | 2 +- buildstream/_platform/linux.py | 4 ++-- buildstream/_platform/platform.py | 7 ++----- buildstream/_platform/unix.py | 4 ++-- 4 files changed, 7 insertions(+), 10 deletions(-) diff --git a/buildstream/_frontend/app.py b/buildstream/_frontend/app.py index 553dae283..a07fe9860 100644 --- a/buildstream/_frontend/app.py +++ b/buildstream/_frontend/app.py @@ -199,7 +199,7 @@ class App(): if option_value is not None: setattr(self.context, context_attr, option_value) try: - Platform.create_instance(self.context) + Platform.create_instance() except BstError as e: self._error_exit(e, "Error instantiating platform") diff --git a/buildstream/_platform/linux.py b/buildstream/_platform/linux.py index 2dfe72ac7..7af1a2283 100644 --- a/buildstream/_platform/linux.py +++ b/buildstream/_platform/linux.py @@ -30,9 +30,9 @@ from . import Platform class Linux(Platform): - def __init__(self, context): + def __init__(self): - super().__init__(context) + super().__init__() self._uid = os.geteuid() self._gid = os.getegid() diff --git a/buildstream/_platform/platform.py b/buildstream/_platform/platform.py index a6051aabb..bbd2e65ab 100644 --- a/buildstream/_platform/platform.py +++ b/buildstream/_platform/platform.py @@ -31,11 +31,8 @@ class Platform(): # A class to manage platform-specific details. Currently holds the # sandbox factory as well as platform helpers. # - # Args: - # context (context): The project context - # - def __init__(self, context): - self.context = context + def __init__(self): + pass @classmethod def create_instance(cls, *args, **kwargs): diff --git a/buildstream/_platform/unix.py b/buildstream/_platform/unix.py index 3bd86e0ac..7aa8cbc0d 100644 --- a/buildstream/_platform/unix.py +++ b/buildstream/_platform/unix.py @@ -27,9 +27,9 @@ from . import Platform class Unix(Platform): - def __init__(self, context): + def __init__(self): - super().__init__(context) + super().__init__() self._uid = os.geteuid() self._gid = os.getegid() -- cgit v1.2.1