diff options
Diffstat (limited to 'python/lowlevelil.py')
| -rw-r--r-- | python/lowlevelil.py | 5 |
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]: |
