summaryrefslogtreecommitdiff
path: root/python/highlevelil.py
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2023-01-09 16:53:19 -0500
committerPeter LaFosse <peter@vector35.com>2023-01-09 16:53:19 -0500
commitb0a9510e0b58f504e80c0a9328c1af267a9629b0 (patch)
treeff3cffbd90ec8aba084b9214df21556ed8d1c0d6 /python/highlevelil.py
parentb0099015b8de4e97e8d1d32d1170da2554a31693 (diff)
GotoLabel.name is settable and thus its class shouldn't be frozen
Diffstat (limited to 'python/highlevelil.py')
-rw-r--r--python/highlevelil.py2
1 files changed, 1 insertions, 1 deletions
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