diff options
Diffstat (limited to 'python/lowlevelil.py')
| -rw-r--r-- | python/lowlevelil.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/lowlevelil.py b/python/lowlevelil.py index c6ee2b4a..42ce8068 100644 --- a/python/lowlevelil.py +++ b/python/lowlevelil.py @@ -4861,9 +4861,9 @@ class LowLevelILBasicBlock(basicblock.BasicBlock): else: return self._il_function[self.end + idx] - def _create_instance(self, handle, view): + def _create_instance(self, handle): """Internal method by super to instantiate child instances""" - return LowLevelILBasicBlock(handle, self._il_function, view) + return LowLevelILBasicBlock(handle, self._il_function, self.view) @property def instruction_count(self) -> int: |
