summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2025-02-14 14:45:12 -0500
committerJordan Wiens <jordan@psifertex.com>2025-02-14 14:45:12 -0500
commit821957c669c4929e7fed30fb12b022e1b83aae7c (patch)
treefdb4e92f42dffaa2321789887bea52d482c297e8
parente4b71a2c5e5bf297ca43fce211ea31a3d6ad50ac (diff)
fix typo in il_function variable property in python api
-rw-r--r--python/variable.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/variable.py b/python/variable.py
index ec8f050d..2a8ee026 100644
--- a/python/variable.py
+++ b/python/variable.py
@@ -899,7 +899,7 @@ class Variable(CoreVariable):
@property
def il_function(self) -> 'function.ILFunctionType':
"""returns the IL Function object which this variable belongs to"""
- return self.var._il_function
+ return self._il_function
def set_name_async(self, name: Optional[str]) -> None:
"""