diff options
| author | Josh Ferrell <josh@vector35.com> | 2025-11-19 12:40:29 -0500 |
|---|---|---|
| committer | Josh Ferrell <josh@vector35.com> | 2025-11-19 15:05:16 -0500 |
| commit | dae5a014ccbfe5a99379163b49e426eeb0b9e766 (patch) | |
| tree | 7e6d66c5dec8620f7299ed3e0e6c756875e871b1 /python/mediumlevelil.py | |
| parent | d4a7ed9b8fce07ce7206d4ab48b0b333ae69d47a (diff) | |
Improve python api type hints
Diffstat (limited to 'python/mediumlevelil.py')
| -rw-r--r-- | python/mediumlevelil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/mediumlevelil.py b/python/mediumlevelil.py index e710d5c2..61c0bf1b 100644 --- a/python/mediumlevelil.py +++ b/python/mediumlevelil.py @@ -3273,7 +3273,7 @@ class MediumLevelILExpr: .. note:: Deprecated. Use ExpressionIndex instead """ - def __init__(self, index): + def __init__(self, index: int): self._index = index def __int__(self): |
