diff options
| author | Peter LaFosse <peter@vector35.com> | 2021-09-27 14:39:43 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2021-09-27 14:39:43 -0400 |
| commit | 8e9d78258e8be2153b5751b913587cbed5f0e1ad (patch) | |
| tree | d9e746d5f11157ca3e180a6fbd0b2e44f6ce1147 /python | |
| parent | f2362fb56a2099d8d6d630d76234165c4e4a13a0 (diff) | |
Fix repr for LowLevelILInstruction
Diffstat (limited to 'python')
| -rw-r--r-- | python/lowlevelil.py | 2 |
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): |
