summaryrefslogtreecommitdiff
path: root/python/highlevelil.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/highlevelil.py')
-rw-r--r--python/highlevelil.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/python/highlevelil.py b/python/highlevelil.py
index e5b9311d..b8203e75 100644
--- a/python/highlevelil.py
+++ b/python/highlevelil.py
@@ -2181,9 +2181,8 @@ class HighLevelILFunction:
return HighLevelILBasicBlock(handle, self, self.view)
@property
- def basic_blocks(self) -> 'function.BasicBlockList':
- """function.BasicBlockList of HighLevelILBasicBlock objects (read-only)"""
- return function.BasicBlockList(self)
+ def basic_blocks(self) -> 'function.HighLevelILBasicBlockList':
+ return function.HighLevelILBasicBlockList(self)
@property
def instructions(self) -> Generator[HighLevelILInstruction, None, None]: