diff options
| author | Peter LaFosse <peter@vector35.com> | 2021-09-24 09:20:23 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2021-09-24 09:40:16 -0400 |
| commit | 5a288649e8fcb999c11cca17ad0c1956f3ef8e11 (patch) | |
| tree | 7d9df04c7ffaa25d6192cfd09f3e48c2b06054a7 /python/callingconvention.py | |
| parent | ad16e8b3d27e30cc4eefb7c673f7646a30fe2f26 (diff) | |
Use more f-strings
Diffstat (limited to 'python/callingconvention.py')
| -rw-r--r-- | python/callingconvention.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 "<calling convention: %s %s>" % (self.arch.name, self.name) + return f"<calling convention: {self.arch.name} {self.name}>" def __str__(self): return self.name |
