diff options
Diffstat (limited to 'python/binaryview.py')
| -rw-r--r-- | python/binaryview.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/binaryview.py b/python/binaryview.py index 28db7271..912edd8f 100644 --- a/python/binaryview.py +++ b/python/binaryview.py @@ -7500,7 +7500,7 @@ class StructuredDataValue(object): return ' '.join([f"{x:02x}" for x in struct.unpack(decode_str, self.value)]) def __repr__(self): - return "<StructuredDataValue type:{} value:{}>".format(str(self.type), str(self)) + return f"<StructuredDataValue type:{self.type} value:{self}>" def __int__(self): if self.type.width == 1: |
