From 328069809bf7e416f85f2637d1e8b738af47fd21 Mon Sep 17 00:00:00 2001 From: didericis Date: Tue, 9 Jun 2026 00:48:40 -0400 Subject: [PATCH] fix(pyright): remove unused shlex imports from bottle backends shlex is now only used in terminal.py after the exec_shell_script refactor. Co-Authored-By: Claude Sonnet 4.6 --- bot_bottle/backend/docker/bottle.py | 1 - bot_bottle/backend/smolmachines/bottle.py | 1 - 2 files changed, 2 deletions(-) diff --git a/bot_bottle/backend/docker/bottle.py b/bot_bottle/backend/docker/bottle.py index f463e52..b11deb4 100644 --- a/bot_bottle/backend/docker/bottle.py +++ b/bot_bottle/backend/docker/bottle.py @@ -3,7 +3,6 @@ from __future__ import annotations import subprocess -import shlex from typing import Callable from typing import cast diff --git a/bot_bottle/backend/smolmachines/bottle.py b/bot_bottle/backend/smolmachines/bottle.py index 1d2fa8c..5764dae 100644 --- a/bot_bottle/backend/smolmachines/bottle.py +++ b/bot_bottle/backend/smolmachines/bottle.py @@ -20,7 +20,6 @@ from __future__ import annotations import subprocess import sys import time -import shlex from typing import Mapping, cast from ...agent_provider import PromptMode, prompt_args