From d073134c838fd1eb07ffa552d394a8e1f758af52 Mon Sep 17 00:00:00 2001 From: huanghuoguoguo <60681390+huanghuoguoguo@users.noreply.github.com> Date: Sun, 14 Jun 2026 21:36:44 +0800 Subject: [PATCH] chore(agent-runner): align marketplace download indentation --- src/langbot/pkg/plugin/connector.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/langbot/pkg/plugin/connector.py b/src/langbot/pkg/plugin/connector.py index 54cfa7e2..039f02f0 100644 --- a/src/langbot/pkg/plugin/connector.py +++ b/src/langbot/pkg/plugin/connector.py @@ -465,11 +465,11 @@ class PluginRuntimeConnector(ManagedRuntimeConnector): download_resp = await client.get( f'{space_url}/api/v1/marketplace/plugins/download/{plugin_author}/{plugin_name}/{latest_version}' - ) + ) if download_resp.status_code != 200: raise Exception( f'Failed to download plugin {plugin_author}/{plugin_name}: {download_resp.status_code}' - ) + ) file_bytes = download_resp.content self._inspect_plugin_package(file_bytes, task_context)