From a7b05bff9ca19b783207e1e3935ad82585a59e8b Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Mon, 27 Sep 2021 15:37:49 -0400 Subject: More f-strings --- python/lowlevelil.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/lowlevelil.py') diff --git a/python/lowlevelil.py b/python/lowlevelil.py index fb4f65b4..cad8828c 100644 --- a/python/lowlevelil.py +++ b/python/lowlevelil.py @@ -4636,9 +4636,9 @@ class LowLevelILBasicBlock(basicblock.BasicBlock): def __repr__(self): arch = self.arch if arch: - return "" % (arch.name, self.start, self.end) + return f"" else: - return "" % (self.start, self.end) + return f"" def __hash__(self): return hash((self.start, self.end, self._il_function)) -- cgit v1.3.1