diff options
| author | Alexander Taylor <alex@vector35.com> | 2025-05-20 20:32:38 -0400 |
|---|---|---|
| committer | Alexander Taylor <alex@vector35.com> | 2025-05-20 20:32:38 -0400 |
| commit | f441eb7762fc6aeba3334e3c9d41a6812ab3ad67 (patch) | |
| tree | b8d4ad9dc0cd4d7d35a4b596ee4edf7bce1aaaa8 | |
| parent | b93fab7e210e7a47722ae9933b2461e68ead99a5 (diff) | |
Fix the build.
Previous commit causes failures in API documentation generation. This
builds and passes unit tests locally, hoping that will also be the case
for CI.
| -rw-r--r-- | python/function.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/function.py b/python/function.py index 1f966f01..429b6f69 100644 --- a/python/function.py +++ b/python/function.py @@ -31,7 +31,6 @@ from .enums import ( HighlightColorStyle, DisassemblyOption, IntegerDisplayType, FunctionAnalysisSkipOverride, FunctionUpdateType, BuiltinType ) -from .commonil import Localcall from . import associateddatastore # Required in the main scope due to being an argument for _FunctionAssociatedDataStore from . import types @@ -50,6 +49,7 @@ from . import languagerepresentation from . import deprecation from . import metadata from . import __version__ +from .commonil import Localcall # we define the following as such so the linter doesn't confuse 'highlight' the module with the # property of the same name. There is probably some other work around but it eludes me. |
