Skip to content

Commit 821957c

Browse files
committed
fix typo in il_function variable property in python api
1 parent e4b71a2 commit 821957c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/variable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -899,7 +899,7 @@ def function(self) -> 'binaryninja.function.Function':
899899
@property
900900
def il_function(self) -> 'function.ILFunctionType':
901901
"""returns the IL Function object which this variable belongs to"""
902-
return self.var._il_function
902+
return self._il_function
903903

904904
def set_name_async(self, name: Optional[str]) -> None:
905905
"""

0 commit comments

Comments
 (0)