From 66200232e2d4ad36f863dcd292798489ce29da42 Mon Sep 17 00:00:00 2001 From: Josh Ferrell Date: Tue, 18 Nov 2025 20:48:04 -0500 Subject: Fix DisassemblyTextLine repr --- python/function.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/function.py') diff --git a/python/function.py b/python/function.py index 0996d87f..2d52c505 100644 --- a/python/function.py +++ b/python/function.py @@ -3803,8 +3803,8 @@ class DisassemblyTextLine: def __repr__(self): if self.address is None: - return f"" - return f"" + return f"" + return f"" @property def total_width(self): -- cgit v1.3.1