diff options
| author | Peter LaFosse <peter@vector35.com> | 2021-08-24 16:32:03 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2021-09-06 11:46:38 -0400 |
| commit | e0187520be6b4ece01cc875049cf43fd68244246 (patch) | |
| tree | 5e50ff674c94ea652f9ea4f3dc21d831fc7e325f /python/function.py | |
| parent | 58a24fe593bb99149d964c5f9b8e78fae8a31c4b (diff) | |
Additional typehints for mediumlevelil.py, binaryview.py and function.py
Diffstat (limited to 'python/function.py')
| -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 74717595..515c1008 100644 --- a/python/function.py +++ b/python/function.py @@ -251,7 +251,7 @@ class VariableReferenceSource: class Function: _associated_data = {} - def __init__(self, view:Optional['binaryview.BinaryView']=None, handle:Optional[core.BNFunction]=None): + def __init__(self, view:Optional['binaryview.BinaryView']=None, handle:Optional[core.BNFunctionHandle]=None): self._advanced_analysis_requests = 0 assert handle is not None, "creation of standalone 'Function' objects is not implemented" FunctionHandle = ctypes.POINTER(core.BNFunction) |
