We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aec7b69 commit c28a58cCopy full SHA for c28a58c
python/typedb/concept/value/value.py
@@ -115,7 +115,7 @@ def __str__(self):
115
def __eq__(self, other):
116
if other is self:
117
return True
118
- if not other or type(self) is not type(other) or self.get_value_type() != other.get_value_type():
+ if not other or type(self) is not type(other) or self.try_get_value_type() != other.try_get_value_type():
119
return False
120
return self.get() == other.get()
121
0 commit comments