Skip to content

Commit 4078942

Browse files
committed
LLILIntrinsic: Don't quote type in detailed_operands
1 parent 1454707 commit 4078942

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/lowlevelil.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2656,7 +2656,7 @@ def detailed_operands(self) -> List[Tuple[str, LowLevelILOperandType, str]]:
26562656
return [
26572657
("output", self.output, "List[Union[ILFlag, ILRegister]]"),
26582658
("intrinsic", self.intrinsic, "ILIntrinsic"),
2659-
("params", self.params, "List['LowLevelILInstruction']"),
2659+
("params", self.params, "List[LowLevelILInstruction]"),
26602660
]
26612661

26622662

0 commit comments

Comments
 (0)