summaryrefslogtreecommitdiff
path: root/python/lowlevelil.py
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2021-09-27 14:39:43 -0400
committerPeter LaFosse <peter@vector35.com>2021-09-27 14:39:43 -0400
commit8e9d78258e8be2153b5751b913587cbed5f0e1ad (patch)
treed9e746d5f11157ca3e180a6fbd0b2e44f6ce1147 /python/lowlevelil.py
parentf2362fb56a2099d8d6d630d76234165c4e4a13a0 (diff)
Fix repr for LowLevelILInstruction
Diffstat (limited to 'python/lowlevelil.py')
-rw-r--r--python/lowlevelil.py2
1 files changed, 1 insertions, 1 deletions
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 "<llil: {self}>"
+ return f"<llil: {self}>"
def __eq__(self, other:'LowLevelILInstruction') -> bool:
if not isinstance(other, LowLevelILInstruction):