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/debuginfo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/debuginfo.py') diff --git a/python/debuginfo.py b/python/debuginfo.py index 376e2b5e..17dbec5e 100644 --- a/python/debuginfo.py +++ b/python/debuginfo.py @@ -222,7 +222,7 @@ class DebugInfoParser(object, metaclass=_DebugInfoParserMetaClass): """Returns whether this debug-info parser is valid for the provided binary view""" return core.BNIsDebugInfoParserValidForView(self.handle, view.handle) - def parse_debug_info(self, view: 'binaryview.BinaryView', debug_view: 'binaryview.BinaryView', debug_info: Optional["DebugInfo"] = None, progress: ProgressFuncType = None) -> Optional["DebugInfo"]: + def parse_debug_info(self, view: 'binaryview.BinaryView', debug_view: 'binaryview.BinaryView', debug_info: Optional["DebugInfo"] = None, progress: Optional[ProgressFuncType] = None) -> Optional["DebugInfo"]: """ Returns a ``DebugInfo`` object populated with debug info by this debug-info parser. Only provide a ``DebugInfo`` object if you wish to append to the existing debug info. -- cgit v1.3.1