Skip to content

Commit 6620023

Browse files
committed
Fix DisassemblyTextLine repr
1 parent 69c3f09 commit 6620023

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/function.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3803,8 +3803,8 @@ def __str__(self):
38033803

38043804
def __repr__(self):
38053805
if self.address is None:
3806-
return f"<disassemblyTextLine {self}>"
3807-
return f"<disassemblyTextLine {self.address:#x}: {self}>"
3806+
return f"<DisassemblyTextLine {self}>"
3807+
return f"<DisassemblyTextLine {self.address:#x}: {self}>"
38083808

38093809
@property
38103810
def total_width(self):

0 commit comments

Comments
 (0)