From 821957c669c4929e7fed30fb12b022e1b83aae7c Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Fri, 14 Feb 2025 14:45:12 -0500 Subject: fix typo in il_function variable property in python api --- python/variable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/variable.py') 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: """ -- cgit v1.3.1