diff options
author | Tristan Maat <tristan.maat@codethink.co.uk> | 2017-10-31 13:31:00 +0000 |
---|---|---|
committer | Tristan Maat <tristan.maat@codethink.co.uk> | 2017-10-31 13:31:00 +0000 |
commit | e268c297788f8175ae82e8978e44222da8acad64 (patch) | |
tree | c6e9a239d2785bceeb15ea41ac5f8d0635e4a351 /buildstream/_platform/platform.py | |
parent | 5e28b4a3de1f42a1d4240d429c1c85641da5f40c (diff) | |
download | buildstream-platform_singleton.tar.gz |
Clean old Platform.get_platform referencesplatform_singleton
Diffstat (limited to 'buildstream/_platform/platform.py')
-rw-r--r-- | buildstream/_platform/platform.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/_platform/platform.py b/buildstream/_platform/platform.py index d4b5f89a3..387abcb9a 100644 --- a/buildstream/_platform/platform.py +++ b/buildstream/_platform/platform.py @@ -65,7 +65,7 @@ class Platform(): cls._instance = PlatformImpl(*args, **kwargs) @classmethod - def get_platform(cls, *args, **kwargs): + def get_platform(cls): if not cls._instance: raise PlatformError("Platform needs to be initialized first") return cls._instance |