This commit is contained in:
Yacine Elhamer
2023-08-03 11:24:24 +01:00
parent 4277b4bef8
commit 4f9d24598f

View File

@@ -132,7 +132,7 @@ class DynamicReturnAddress(Address):
def __eq__(self, other):
assert isinstance(other, DynamicReturnAddress)
return (self.call, self.return_address) == other.call, other.return_address)
return (self.call, self.return_address) == (other.call, other.return_address)
def __lt__(self, other):
assert isinstance(other, DynamicReturnAddress)