From 5e71a3cf54305f509900987ec5e9717a9b068bcf Mon Sep 17 00:00:00 2001 From: Nose Date: Fri, 10 Jul 2026 21:55:54 -0700 Subject: [PATCH] update config --- cmdnat/config.py | 7 +++++++ scripts/bootstrap.py | 2 ++ 2 files changed, 9 insertions(+) diff --git a/cmdnat/config.py b/cmdnat/config.py index f050a41..03d4aed 100644 --- a/cmdnat/config.py +++ b/cmdnat/config.py @@ -294,6 +294,13 @@ def _get_configurable_plugin_names() -> List[str]: ] except Exception: return [] + + +def _get_configurable_tool_names() -> List[str]: + """Retain compatibility with the retired tool configuration category.""" + return [] + + def _get_multi_instance_plugin_names() -> set[str]: try: return { diff --git a/scripts/bootstrap.py b/scripts/bootstrap.py index efd3f55..ac1b5f7 100644 --- a/scripts/bootstrap.py +++ b/scripts/bootstrap.py @@ -1901,6 +1901,8 @@ if (Test-Path (Join-Path $repo 'CLI.py')) { "setlocal\n" f'set "REPO={repo_bat_str}"\n' "set \"PY=%REPO%\\.venv\\Scripts\\python.exe\"\n" + "set \"PYTHONPATH=%REPO%\"\n" + "set \"PYTHONNOUSERSITE=1\"\n" "\n" "cd /d \"%REPO%\"\n" "if exist \"%PY%\" (\n"