From 8e9d78258e8be2153b5751b913587cbed5f0e1ad Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Mon, 27 Sep 2021 14:39:43 -0400 Subject: Fix repr for LowLevelILInstruction --- python/lowlevelil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python') diff --git a/python/lowlevelil.py b/python/lowlevelil.py index 8afbe418..fb4f65b4 100644 --- a/python/lowlevelil.py +++ b/python/lowlevelil.py @@ -467,7 +467,7 @@ class LowLevelILInstruction: return result def __repr__(self): - return "" + return f"" def __eq__(self, other:'LowLevelILInstruction') -> bool: if not isinstance(other, LowLevelILInstruction): -- cgit v1.3.1