From 21069e7a00f7c7275ff9f15fcbc1532885d86e01 Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Wed, 22 Sep 2021 09:29:04 -0400 Subject: Fix Section __repr__ --- python/binaryview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/binaryview.py') diff --git a/python/binaryview.py b/python/binaryview.py index 000f8561..b718dd6c 100644 --- a/python/binaryview.py +++ b/python/binaryview.py @@ -1055,7 +1055,7 @@ class Section: core.BNFreeSection(self.handle) def __repr__(self): - return "
" + return f"
" def __len__(self): return core.BNSectionGetLength(self.handle) -- cgit v1.3.1