diff options
| author | Peter LaFosse <peter@vector35.com> | 2021-06-07 09:59:54 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2021-09-05 10:08:09 -0400 |
| commit | 61b4bb24e06aa955484293d35fa926c07887544b (patch) | |
| tree | 29c6b7fecdac6270681260637439926ec07a259e /python/mainthread.py | |
| parent | 75f2463a46cc666e87120f3a30332fa80020b62e (diff) | |
Add type hints to basicblock.py, lowlevelil.py, architecture.py
Diffstat (limited to 'python/mainthread.py')
| -rw-r--r-- | python/mainthread.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/python/mainthread.py b/python/mainthread.py index 3b5dc26e..d8b00993 100644 --- a/python/mainthread.py +++ b/python/mainthread.py @@ -19,9 +19,9 @@ # IN THE SOFTWARE. # Binary Ninja components -from binaryninja import _binaryninjacore as core -from binaryninja import scriptingprovider -from binaryninja import plugin +from . import _binaryninjacore as core +from . import scriptingprovider +from . import plugin def execute_on_main_thread(func): |
