summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Silverstone <daniel.silverstone@codethink.co.uk>2018-10-24 10:27:07 +0100
committerDaniel Silverstone <daniel.silverstone@codethink.co.uk>2018-10-25 15:43:52 +0100
commitaca9a612e3234c4462f6ece873f9497aadc784b4 (patch)
treebb2f22f9cf8c29b366d6f83e9d36a16d1e079629
parenteb805c6c8f4bc20eda4db09534b9986f6702597d (diff)
downloadbuildstream-aca9a612e3234c4462f6ece873f9497aadc784b4.tar.gz
_platform/darwin.py: Remove useless __init__()
An otherwise empty __init__ passing no arguments to super.__init__ is worthless. Remove it. Signed-off-by: Daniel Silverstone <daniel.silverstone@codethink.co.uk>
-rw-r--r--buildstream/_platform/darwin.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/buildstream/_platform/darwin.py b/buildstream/_platform/darwin.py
index 04a83110e..07740c11c 100644
--- a/buildstream/_platform/darwin.py
+++ b/buildstream/_platform/darwin.py
@@ -29,10 +29,6 @@ class Darwin(Platform):
# This value comes from OPEN_MAX in syslimits.h
OPEN_MAX = 10240
- def __init__(self):
-
- super().__init__()
-
def create_sandbox(self, *args, **kwargs):
kwargs['dummy_reason'] = \
"OSXFUSE is not supported and there are no supported sandbox" + \