summaryrefslogtreecommitdiff
path: root/python/variable.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/variable.py')
-rw-r--r--python/variable.py2
1 files changed, 1 insertions, 1 deletions
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: