diff options
author | Tristan Maat <tristan.maat@codethink.co.uk> | 2017-10-31 13:31:00 +0000 |
---|---|---|
committer | Tristan Van Berkom <tristan.van.berkom@gmail.com> | 2017-11-01 10:01:42 +0000 |
commit | 6c0fa8445b849680300d407efe8bca691d4e680e (patch) | |
tree | 9a17bfa7f2c05d4d6338c21e163fa776b74c2376 /buildstream/_platform | |
parent | d64ea749379100f61ed2c3342bcda4d8e5a46d71 (diff) | |
download | buildstream-6c0fa8445b849680300d407efe8bca691d4e680e.tar.gz |
Clean old Platform.get_platform references
Diffstat (limited to 'buildstream/_platform')
-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 |