From 451d5450eed583334b2e34a0c3c74cbd73076d59 Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Tue, 28 Apr 2026 23:24:19 +0800 Subject: [PATCH] fix: reorder import statements in shell.py for consistency --- astrbot/core/tools/computer_tools/shell.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/astrbot/core/tools/computer_tools/shell.py b/astrbot/core/tools/computer_tools/shell.py index b2dce9725..330b661cf 100644 --- a/astrbot/core/tools/computer_tools/shell.py +++ b/astrbot/core/tools/computer_tools/shell.py @@ -1,9 +1,9 @@ import json import os -import uuid -from pathlib import Path import shlex +import uuid from dataclasses import dataclass, field +from pathlib import Path from typing import Any from astrbot.api import FunctionTool