From 5a288649e8fcb999c11cca17ad0c1956f3ef8e11 Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Fri, 24 Sep 2021 09:20:23 -0400 Subject: Use more f-strings --- python/callingconvention.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/callingconvention.py') diff --git a/python/callingconvention.py b/python/callingconvention.py index ff3e8ff6..1b068536 100644 --- a/python/callingconvention.py +++ b/python/callingconvention.py @@ -170,7 +170,7 @@ class CallingConvention: core.BNFreeCallingConvention(self.handle) def __repr__(self): - return "" % (self.arch.name, self.name) + return f"" def __str__(self): return self.name -- cgit v1.3.1