From 800f20d72c94a7e69b542540b40c853975842b07 Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Fri, 21 Jan 2022 15:50:25 -0500 Subject: Fix Variable.__hash__ and fix some Type APIs --- 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 3862d95b..67dc2cac 100644 --- a/python/variable.py +++ b/python/variable.py @@ -694,7 +694,7 @@ class Variable(CoreVariable): return super().__ge__(other) and self._function >= other._function def __hash__(self): - return hash((self._function, super())) + return hash((self._function, super().__hash__())) @property def core_variable(self) -> CoreVariable: -- cgit v1.3.1