summaryrefslogtreecommitdiff
path: root/python/highlevelil.py
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2023-03-28 15:08:48 -0400
committerPeter LaFosse <peter@vector35.com>2023-03-29 15:33:08 -0400
commit8d791bc9eb608139c6fd9d99ab0d96ed37561d3a (patch)
tree6c7b4d3c0b9cb8b1c08d21da318f2080b7e2a5d5 /python/highlevelil.py
parenteccbcdea4a23ce50a586decfcec5e7454ea049e4 (diff)
Fix some type hints using more correct Dict instead of Mapping
Diffstat (limited to 'python/highlevelil.py')
-rw-r--r--python/highlevelil.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/python/highlevelil.py b/python/highlevelil.py
index a267101f..0c5e7992 100644
--- a/python/highlevelil.py
+++ b/python/highlevelil.py
@@ -116,7 +116,6 @@ class GotoLabel:
def uses(self) -> List['HighLevelILInstruction']:
return self.function.get_label_uses(self.id)
-
@dataclass(frozen=True, order=True)
class CoreHighLevelILInstruction:
operation: HighLevelILOperation