diff options
| author | Glenn Smith <glenn@vector35.com> | 2023-03-02 18:59:57 -0500 |
|---|---|---|
| committer | Glenn Smith <glenn@vector35.com> | 2023-03-29 20:34:29 -0400 |
| commit | 9848899062334797183780470372944060386547 (patch) | |
| tree | 2f44f1a047bd8c861225df490bf0fa2095f3c47d /python/binaryview.py | |
| parent | 7977801957364139464406602038722124434273 (diff) | |
Fix BinaryView.type_names api
Diffstat (limited to 'python/binaryview.py')
| -rw-r--r-- | python/binaryview.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/binaryview.py b/python/binaryview.py index d25f8e9e..5c198986 100644 --- a/python/binaryview.py +++ b/python/binaryview.py @@ -2714,7 +2714,7 @@ class BinaryView: return TypeMapping(self, core.BNGetAnalysisDependencySortedTypeList) @property - def type_names(self) -> List['_types.Type']: + def type_names(self) -> List['_types.QualifiedName']: """List of defined type names (read-only)""" count = ctypes.c_ulonglong(0) name_list = core.BNGetAnalysisTypeNames(self.handle, count, "") |
