From d7ce6518974f5df461c5423c5cf89054e7bc2cea Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Thu, 29 Jun 2023 11:15:37 -0400 Subject: Implement __repr__ for all basic blocks in the base class --- python/lowlevelil.py | 7 ------- 1 file changed, 7 deletions(-) (limited to 'python/lowlevelil.py') diff --git a/python/lowlevelil.py b/python/lowlevelil.py index 7d5153fe..8f04600f 100644 --- a/python/lowlevelil.py +++ b/python/lowlevelil.py @@ -5268,13 +5268,6 @@ class LowLevelILBasicBlock(basicblock.BasicBlock): super(LowLevelILBasicBlock, self).__init__(handle, view) self._il_function = owner - def __repr__(self): - arch = self.arch - if arch: - return f"" - else: - return f"" - def __hash__(self): return hash((self.start, self.end, self._il_function)) -- cgit v1.3.1