From 258a0d27e16c5d94ce547003ac863102e845f3b3 Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Fri, 24 Sep 2021 10:31:26 -0400 Subject: Make repr for llil and mlil have different titles --- python/lowlevelil.py | 2 +- python/mediumlevelil.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'python') diff --git a/python/lowlevelil.py b/python/lowlevelil.py index 2bf290e0..b5c25188 100644 --- a/python/lowlevelil.py +++ b/python/lowlevelil.py @@ -467,7 +467,7 @@ class LowLevelILInstruction: return result def __repr__(self): - return "" % str(self) + return "" def __eq__(self, other:'LowLevelILInstruction') -> bool: if not isinstance(other, LowLevelILInstruction): diff --git a/python/mediumlevelil.py b/python/mediumlevelil.py index d890a860..2c8f6291 100644 --- a/python/mediumlevelil.py +++ b/python/mediumlevelil.py @@ -271,7 +271,7 @@ class MediumLevelILInstruction: return result def __repr__(self): - return f"" + return f"" def __eq__(self, other:'MediumLevelILInstruction') -> bool: if not isinstance(other, MediumLevelILInstruction): -- cgit v1.3.1