diff options
Diffstat (limited to 'buildstream')
-rw-r--r-- | buildstream/_frontend/app.py | 2 | ||||
-rw-r--r-- | buildstream/_platform/linux.py | 4 | ||||
-rw-r--r-- | buildstream/_platform/platform.py | 7 | ||||
-rw-r--r-- | 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 caec7cfa3..af52dbedd 100644 --- a/buildstream/_frontend/app.py +++ b/buildstream/_frontend/app.py @@ -198,7 +198,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() |