summaryrefslogtreecommitdiff
path: root/python/lowlevelil.py
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2021-11-23 08:53:36 -0500
committerPeter LaFosse <peter@vector35.com>2021-11-29 09:25:27 -0500
commit9700dad7db37f5898afbbea82ba2fbf465217bf6 (patch)
treeb17cf8e01b30282c7b7f1b91a62cfa417255d783 /python/lowlevelil.py
parent7145eaf90190f114449610948d6fa0ddf2191771 (diff)
Fix type hints for BasicBlockList
Diffstat (limited to 'python/lowlevelil.py')
-rw-r--r--python/lowlevelil.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/python/lowlevelil.py b/python/lowlevelil.py
index 4d320d18..c766b8dd 100644
--- a/python/lowlevelil.py
+++ b/python/lowlevelil.py
@@ -2793,9 +2793,8 @@ class LowLevelILFunction:
return LowLevelILBasicBlock(handle, self, self.view)
@property
- def basic_blocks(self) -> 'function.BasicBlockList':
- """function.BasicBlockList of LowLevelILBasicBlock objects (read-only)"""
- return function.BasicBlockList(self)
+ def basic_blocks(self) -> 'function.LowLevelILBasicBlockList':
+ return function.LowLevelILBasicBlockList(self)
@property
def instructions(self) -> Generator['LowLevelILInstruction', None, None]: