diff options
| author | Glenn Smith <glenn@vector35.com> | 2025-06-11 16:42:43 -0400 |
|---|---|---|
| committer | Glenn Smith <glenn@vector35.com> | 2025-06-11 17:37:35 -0400 |
| commit | 1755419129557018353579827941066534499520 (patch) | |
| tree | 27ea5ce950086be044b885b5774735574750ecac /python | |
| parent | 7113133156893477152592257597568507482197 (diff) | |
LLILIntrinsic: Don't quote type in detailed_operands
Diffstat (limited to 'python')
| -rw-r--r-- | python/lowlevelil.py | 2 |
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]"), ] |
