From aca9a612e3234c4462f6ece873f9497aadc784b4 Mon Sep 17 00:00:00 2001 From: Daniel Silverstone Date: Wed, 24 Oct 2018 10:27:07 +0100 Subject: _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 --- buildstream/_platform/darwin.py | 4 ---- 1 file changed, 4 deletions(-) (limited to 'buildstream/_platform') 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" + \ -- cgit v1.2.1