summaryrefslogtreecommitdiff
path: root/python/binaryview.py
diff options
context:
space:
mode:
authorJosh Ferrell <josh@vector35.com>2025-10-15 13:15:42 -0400
committerJosh Ferrell <josh@vector35.com>2025-10-15 13:16:01 -0400
commit25212cfd39f6dc45ce9030c194b6131645b76ba3 (patch)
tree3d17e7456a8812887dc488371a7f48e0fb0a4946 /python/binaryview.py
parent501af661e5805cb0139ac7fca29b6a5dbd3beefd (diff)
Fix some python type hints
Diffstat (limited to 'python/binaryview.py')
-rw-r--r--python/binaryview.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/binaryview.py b/python/binaryview.py
index 88779630..26d20edd 100644
--- a/python/binaryview.py
+++ b/python/binaryview.py
@@ -7322,7 +7322,7 @@ class BinaryView:
raise TypeError("Removal is only supported with a Component or string representing its Guid")
- def get_function_parent_components(self, function: 'function.Function') -> List['component.Component']:
+ def get_function_parent_components(self, function: '_function.Function') -> List['component.Component']:
_components = []
count = ctypes.c_ulonglong(0)
bn_components = core.BNGetFunctionParentComponents(self.handle, function.handle, count)