summaryrefslogtreecommitdiff
path: root/python/binaryview.py
diff options
context:
space:
mode:
authorGlenn Smith <glenn@vector35.com>2021-09-03 16:19:50 -0400
committerGlenn Smith <glenn@vector35.com>2021-09-23 15:55:57 -0400
commitf180f28fe96e7b5e069b56f0973faad64465fc75 (patch)
tree0bd26e8dc32cf3043409c00825904801d07fc84c /python/binaryview.py
parent6bda03a2086e86d93be3d787d567990bcfd37865 (diff)
Cleanup tag list and tag rendering
Diffstat (limited to 'python/binaryview.py')
-rw-r--r--python/binaryview.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/binaryview.py b/python/binaryview.py
index aaf9e413..28634f83 100644
--- a/python/binaryview.py
+++ b/python/binaryview.py
@@ -1203,7 +1203,7 @@ class Tag:
core.BNFreeTag(self.handle)
def __repr__(self):
- return "<tag {self.type.icon} {self.type.name}: {self.data}>"
+ return f"<tag {self.type.icon} {self.type.name}: {self.data}>"
def __eq__(self, other):
if not isinstance(other, self.__class__):