From a7b05bff9ca19b783207e1e3935ad82585a59e8b Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Mon, 27 Sep 2021 15:37:49 -0400 Subject: More f-strings --- python/binaryview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/binaryview.py') 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 "".format(str(self.type), str(self)) + return f"" def __int__(self): if self.type.width == 1: -- cgit v1.3.1