From d6c4c7036989d2ac81288deccaa786db66ee27f5 Mon Sep 17 00:00:00 2001 From: LIghtJUNction Date: Wed, 29 Apr 2026 04:24:57 +0800 Subject: [PATCH] fix: add missing functools and TYPE_CHECKING imports in shipyard.py --- astrbot/core/computer/booters/shipyard.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/astrbot/core/computer/booters/shipyard.py b/astrbot/core/computer/booters/shipyard.py index 77f31bc40..806bf611b 100644 --- a/astrbot/core/computer/booters/shipyard.py +++ b/astrbot/core/computer/booters/shipyard.py @@ -1,7 +1,8 @@ from __future__ import annotations +import functools import shlex -from typing import Any +from typing import TYPE_CHECKING, Any from shipyard import ShipyardClient, Spec