diff options
| author | Josh Ferrell <josh@vector35.com> | 2024-10-28 12:21:13 -0400 |
|---|---|---|
| committer | Josh Ferrell <josh@vector35.com> | 2024-10-29 16:38:02 -0400 |
| commit | 18ee363d8b11b0e09babf69193de19007b3be957 (patch) | |
| tree | bd23649aec21f6fc46fd5b96b783b793ad37b732 /python/binaryview.py | |
| parent | 36982c4208d8aaa369211ec2d5f3aad3b2f57ee7 (diff) | |
Small type hint fixes
Diffstat (limited to 'python/binaryview.py')
| -rw-r--r-- | python/binaryview.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/binaryview.py b/python/binaryview.py index d24d5412..e213c456 100644 --- a/python/binaryview.py +++ b/python/binaryview.py @@ -9434,7 +9434,7 @@ to a the type "tagRECT" found in the typelibrary "winX64common" return None return settings.Settings(handle=settings_handle) - def set_load_settings(self, type_name: str, settings: settings.Settings) -> None: + def set_load_settings(self, type_name: str, settings: Optional[settings.Settings]) -> None: """ ``set_load_settings`` set a :py:class:`~binaryninja.settings.Settings` object which defines the load settings for the given :py:class:`BinaryViewType` ``type_name`` |
