From e7400c394eca465d2a54a70c16bb175e4521de91 Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Fri, 27 Aug 2021 12:51:26 -0400 Subject: Use more f-strings --- 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 515c1008..ed157ba7 100644 --- a/python/function.py +++ b/python/function.py @@ -272,9 +272,9 @@ class Function: def __repr__(self): arch = self.arch if arch: - return "" % (arch.name, self.start) + return f"" else: - return "" % self.start + return f"" def __eq__(self, other:'Function') -> bool: if not isinstance(other, self.__class__): -- cgit v1.3.1