summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/platform.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/platform.py b/python/platform.py
index 71410d84..4351fe94 100644
--- a/python/platform.py
+++ b/python/platform.py
@@ -117,9 +117,9 @@ class Platform(metaclass=_PlatformMetaClass):
self._name = core.BNGetPlatformName(self.handle)
return self._name
- @property
@classmethod
- def os_list(cls) -> List[str]:
+ @property
+ def os_list(self) -> List[str]:
binaryninja._init_plugins()
count = ctypes.c_ulonglong()
platforms = core.BNGetPlatformOSList(count)