diff options
| author | Josh Ferrell <josh@vector35.com> | 2025-10-15 13:15:42 -0400 |
|---|---|---|
| committer | Josh Ferrell <josh@vector35.com> | 2025-10-15 13:16:01 -0400 |
| commit | 25212cfd39f6dc45ce9030c194b6131645b76ba3 (patch) | |
| tree | 3d17e7456a8812887dc488371a7f48e0fb0a4946 /python/debuginfo.py | |
| parent | 501af661e5805cb0139ac7fca29b6a5dbd3beefd (diff) | |
Fix some python type hints
Diffstat (limited to 'python/debuginfo.py')
| -rw-r--r-- | python/debuginfo.py | 2 |
1 files changed, 1 insertions, 1 deletions
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. |
