From 9848899062334797183780470372944060386547 Mon Sep 17 00:00:00 2001 From: Glenn Smith Date: Thu, 2 Mar 2023 18:59:57 -0500 Subject: Fix BinaryView.type_names api --- python/binaryview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/binaryview.py') 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, "") -- cgit v1.3.1