From e14338e406c0ae8fe2f97387888551c6448e3009 Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Wed, 2 Jul 2025 16:40:03 -0400 Subject: fix warning for (m/l)lilfunction translate docs --- python/lowlevelil.py | 4 ++-- python/mediumlevelil.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'python') diff --git a/python/lowlevelil.py b/python/lowlevelil.py index 31d6bc0b..188a4623 100644 --- a/python/lowlevelil.py +++ b/python/lowlevelil.py @@ -4155,8 +4155,8 @@ class LowLevelILFunction: :param expr_handler: Function to modify an expression and copy it to the new function. The function should have the following signature: - .. function:: expr_handler(new_func: LowLevelILFunction, old_block: LowLevelILBasicBlock, old_instr: LowLevelILInstruction) -> ExpressionIndex - + expr_handler(new_func: LowLevelILFunction, old_block: LowLevelILBasicBlock, old_instr: LowLevelILInstruction) -> ExpressionIndex + Where: - **new_func** (*LowLevelILFunction*): New function to receive translated instructions - **old_block** (*LowLevelILBasicBlock*): Original block containing old_instr diff --git a/python/mediumlevelil.py b/python/mediumlevelil.py index 5d386b3f..a606ac0f 100644 --- a/python/mediumlevelil.py +++ b/python/mediumlevelil.py @@ -3957,7 +3957,7 @@ class MediumLevelILFunction: :param expr_handler: Function to modify an expression and copy it to the new function. The function should have the following signature: - .. function:: expr_handler(new_func: MediumLevelILFunction, old_block: MediumLevelILBasicBlock, old_instr: MediumLevelILInstruction) -> ExpressionIndex + expr_handler(new_func: MediumLevelILFunction, old_block: MediumLevelILBasicBlock, old_instr: MediumLevelILInstruction) -> ExpressionIndex Where: - **new_func** (*MediumLevelILFunction*): New function to receive translated instructions -- cgit v1.3.1