summaryrefslogtreecommitdiff
path: root/python/highlevelil.py
diff options
context:
space:
mode:
authortbodt <tblodt@icloud.com>2025-09-09 08:20:44 -0700
committerMark Rowe <mark@vector35.com>2025-09-17 21:47:53 -0700
commitece75114e87b6ad80bc21f1825ac96293272951f (patch)
tree4113e94acceb5c69a7ab01b4b8dc10d875309d6f /python/highlevelil.py
parent4fccb2c8c9673247bfb9ba176021c9889ce680e8 (diff)
[Python] Use IL-specific types in return type annotations for get_basic_block_at
Diffstat (limited to 'python/highlevelil.py')
-rw-r--r--python/highlevelil.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/highlevelil.py b/python/highlevelil.py
index 8869fedd..ce264e19 100644
--- a/python/highlevelil.py
+++ b/python/highlevelil.py
@@ -2647,7 +2647,7 @@ class HighLevelILFunction:
def basic_blocks(self) -> 'function.HighLevelILBasicBlockList':
return function.HighLevelILBasicBlockList(self)
- def get_basic_block_at(self, index: int) -> Optional['basicblock.BasicBlock']:
+ def get_basic_block_at(self, index: int) -> Optional['HighLevelILBasicBlock']:
"""
``get_basic_block_at`` returns the BasicBlock at the given HLIL instruction ``index``.