aboutsummaryrefslogtreecommitdiffstats
path: root/idatui/remote_ops.py
diff options
context:
space:
mode:
authorDuncan Ogilvie <mr.exodia.tpodt@gmail.com>2026-08-20 23:55:52 +0200
committerDuncan Ogilvie <mr.exodia.tpodt@gmail.com>2026-08-20 23:55:52 +0200
commitf4c1d9b5497fd0d38137b6b345e8171b307c1117 (patch)
tree5f1f9b0d27c2894582512727c2a3f002077f4097 /idatui/remote_ops.py
parentAdopt idb_events and remote module features from ida-codemode (diff)
downloadida-tui-f4c1d9b5497fd0d38137b6b345e8171b307c1117.tar.gz
ida-tui-f4c1d9b5497fd0d38137b6b345e8171b307c1117.tar.xz
ida-tui-f4c1d9b5497fd0d38137b6b345e8171b307c1117.zip
Switch to ida-nexus
Diffstat (limited to 'idatui/remote_ops.py')
-rw-r--r--idatui/remote_ops.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/idatui/remote_ops.py b/idatui/remote_ops.py
index 91ffeb7..a67b2b7 100644
--- a/idatui/remote_ops.py
+++ b/idatui/remote_ops.py
@@ -1,4 +1,4 @@
-"""Typed remote operations executed through ida-codemode."""
+"""Typed remote operations executed through ida-nexus."""
from __future__ import annotations
# ruff: noqa
@@ -1655,7 +1655,7 @@ def _bindings() -> dict[Callable[..., Any], Any]:
with _BIND_LOCK:
if _BOUND is not None:
return _BOUND
- from ida_codemode import RemoteModule
+ from ida_nexus import RemoteModule
operations_module = RemoteModule(
Path(__file__), operation_label=operation_label, codec="json"