summaryrefslogtreecommitdiff
path: root/python/lowlevelil.py
diff options
context:
space:
mode:
authorGlenn Smith <glenn@vector35.com>2025-06-11 16:42:43 -0400
committerGlenn Smith <glenn@vector35.com>2025-06-11 17:37:35 -0400
commit1755419129557018353579827941066534499520 (patch)
tree27ea5ce950086be044b885b5774735574750ecac /python/lowlevelil.py
parent7113133156893477152592257597568507482197 (diff)
LLILIntrinsic: Don't quote type in detailed_operands
Diffstat (limited to 'python/lowlevelil.py')
-rw-r--r--python/lowlevelil.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/lowlevelil.py b/python/lowlevelil.py
index ef2b7c26..94353aa7 100644
--- a/python/lowlevelil.py
+++ b/python/lowlevelil.py
@@ -2656,7 +2656,7 @@ class LowLevelILIntrinsic(LowLevelILInstruction, Intrinsic):
return [
("output", self.output, "List[Union[ILFlag, ILRegister]]"),
("intrinsic", self.intrinsic, "ILIntrinsic"),
- ("params", self.params, "List['LowLevelILInstruction']"),
+ ("params", self.params, "List[LowLevelILInstruction]"),
]