From b0a9510e0b58f504e80c0a9328c1af267a9629b0 Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Mon, 9 Jan 2023 16:53:19 -0500 Subject: GotoLabel.name is settable and thus its class shouldn't be frozen --- python/highlevelil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/highlevelil.py') diff --git a/python/highlevelil.py b/python/highlevelil.py index b8a53e52..873c7fc7 100644 --- a/python/highlevelil.py +++ b/python/highlevelil.py @@ -81,7 +81,7 @@ class HighLevelILOperationAndSize: return f"<{self.operation.name} {self.size}>" -@dataclass(frozen=True) +@dataclass class GotoLabel: function: 'HighLevelILFunction' id: int -- cgit v1.3.1