diff options
| author | Peter LaFosse <peter@vector35.com> | 2022-02-01 11:34:13 -0500 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2022-03-16 08:05:27 -0400 |
| commit | efb5d8ba056fbae3f57a80f813a18c4a6da60f28 (patch) | |
| tree | 6ab4dfea0234ddb5fba34d5558414d4fd1e8816c /python/mediumlevelil.py | |
| parent | 822b20b06529e2439fe296c5fe1ef277436c5c0b (diff) | |
Fix mlil call bases's type hint
Diffstat (limited to 'python/mediumlevelil.py')
| -rw-r--r-- | python/mediumlevelil.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/mediumlevelil.py b/python/mediumlevelil.py index f40a4b21..89e50f15 100644 --- a/python/mediumlevelil.py +++ b/python/mediumlevelil.py @@ -21,7 +21,7 @@ from abc import abstractmethod import ctypes import struct -from typing import Optional, List, Union, Mapping, Generator, NewType, Tuple, ClassVar +from typing import Optional, List, Union, Mapping, Generator, NewType, Tuple, ClassVar, Dict from dataclasses import dataclass # Binary Ninja components @@ -868,7 +868,7 @@ class MediumLevelILCallBase(MediumLevelILInstruction, Call): return self.output @property - def params(self) -> List[Union[SSAVariable, variable.Variable]]: + def params(self) -> List[Union[SSAVariable, variable.Variable, MediumLevelILInstruction]]: return NotImplemented @property |
