From 25212cfd39f6dc45ce9030c194b6131645b76ba3 Mon Sep 17 00:00:00 2001 From: Josh Ferrell Date: Wed, 15 Oct 2025 13:15:42 -0400 Subject: Fix some python type hints --- 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 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) -- cgit v1.3.1