From 0a58eaecdd665a9381718279b16a408b0fa6c2a8 Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Tue, 13 Jan 2026 19:45:14 +0800 Subject: [PATCH] fix --- astrbot/core/config/default.py | 2 +- test.py | 21 --------------------- 2 files changed, 1 insertion(+), 22 deletions(-) delete mode 100644 test.py diff --git a/astrbot/core/config/default.py b/astrbot/core/config/default.py index c273918f6..17ed48ec4 100644 --- a/astrbot/core/config/default.py +++ b/astrbot/core/config/default.py @@ -2570,7 +2570,7 @@ CONFIG_METADATA_3 = { "provider_settings.sandbox.enable": True, "provider_settings.sandbox.booter": "shipyard", }, - "_special": "check_shipyard_connection" + "_special": "check_shipyard_connection", }, "provider_settings.sandbox.shipyard_access_token": { "description": "Shipyard Access Token", diff --git a/test.py b/test.py deleted file mode 100644 index 4eab5e056..000000000 --- a/test.py +++ /dev/null @@ -1,21 +0,0 @@ -import boxlite - - -async def boot(session_id: str) -> None: - box = boxlite.SimpleBox( - image="soulter/shipyard-ship", - memory_mib=512, - cpus=1, - ports=[{ - "host_port": 12345, - "guest_port": 8123, - }], - ) - - await box.start() - - -if __name__ == "__main__": - import asyncio - - asyncio.run(boot("test-session"))