diff options
| author | tbodt <tblodt@icloud.com> | 2025-09-09 08:20:44 -0700 |
|---|---|---|
| committer | Mark Rowe <mark@vector35.com> | 2025-09-17 21:47:53 -0700 |
| commit | ece75114e87b6ad80bc21f1825ac96293272951f (patch) | |
| tree | 4113e94acceb5c69a7ab01b4b8dc10d875309d6f /python/mediumlevelil.py | |
| parent | 4fccb2c8c9673247bfb9ba176021c9889ce680e8 (diff) | |
[Python] Use IL-specific types in return type annotations for get_basic_block_at
Diffstat (limited to 'python/mediumlevelil.py')
| -rw-r--r-- | python/mediumlevelil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/mediumlevelil.py b/python/mediumlevelil.py index 18e0f718..e710d5c2 100644 --- a/python/mediumlevelil.py +++ b/python/mediumlevelil.py @@ -3429,7 +3429,7 @@ class MediumLevelILFunction: def basic_blocks(self) -> 'function.MediumLevelILBasicBlockList': return function.MediumLevelILBasicBlockList(self) - def get_basic_block_at(self, index: int) -> Optional['basicblock.BasicBlock']: + def get_basic_block_at(self, index: int) -> Optional['MediumLevelILBasicBlock']: """ ``get_basic_block_at`` returns the BasicBlock at the given MLIL instruction ``index``. |
