From 9fff4bb84db93a7b11a8537a1cc0293c542132d0 Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Sun, 5 Sep 2021 12:31:47 -0400 Subject: Fix IL comparision instructions --- python/highlevelil.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'python/highlevelil.py') diff --git a/python/highlevelil.py b/python/highlevelil.py index 05de45de..53678cce 100644 --- a/python/highlevelil.py +++ b/python/highlevelil.py @@ -298,27 +298,27 @@ class HighLevelILInstruction: return f"<{self.operation.name}: {first_line}{continuation}>" def __eq__(self, other:'HighLevelILInstruction'): - if not isinstance(other, self.__class__): + if not isinstance(other, HighLevelILInstruction): return NotImplemented return self.function == other.function and self.expr_index == other.expr_index def __lt__(self, other:'HighLevelILInstruction'): - if not isinstance(other, self.__class__): + if not isinstance(other, HighLevelILInstruction): return NotImplemented return self.function == other.function and self.expr_index < other.expr_index def __le__(self, other:'HighLevelILInstruction'): - if not isinstance(other, self.__class__): + if not isinstance(other, HighLevelILInstruction): return NotImplemented return self.function == other.function and self.expr_index <= other.expr_index def __gt__(self, other:'HighLevelILInstruction'): - if not isinstance(other, self.__class__): + if not isinstance(other, HighLevelILInstruction): return NotImplemented return self.function == other.function and self.expr_index > other.expr_index def __ge__(self, other:'HighLevelILInstruction'): - if not isinstance(other, self.__class__): + if not isinstance(other, HighLevelILInstruction): return NotImplemented return self.function == other.function and self.expr_index >= other.expr_index -- cgit v1.3.1