fix(pyright): remove unused shlex imports from bottle backends
test / unit (pull_request) Successful in 31s
test / integration (pull_request) Successful in 15s
lint / lint (push) Successful in 1m35s
test / unit (push) Successful in 31s
test / integration (push) Successful in 17s
Update Quality Badges / update-badges (push) Successful in 1m30s

shlex is now only used in terminal.py after the exec_shell_script refactor.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit was merged in pull request #219.
This commit is contained in:
2026-06-09 00:48:40 -04:00
parent b1551045dc
commit 328069809b
2 changed files with 0 additions and 2 deletions
-1
View File
@@ -3,7 +3,6 @@
from __future__ import annotations
import subprocess
import shlex
from typing import Callable
from typing import cast
@@ -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