From 90275e195ecb7bbfdca84a7cbdb656c0522d3479 Mon Sep 17 00:00:00 2001 From: jxxghp Date: Mon, 7 Sep 2026 12:12:14 +0800 Subject: [PATCH] fix(cli): suppress expected click typing warning --- app/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/cli.py b/app/cli.py index 801af98f8..32dc53d74 100644 --- a/app/cli.py +++ b/app/cli.py @@ -1213,7 +1213,7 @@ def restart(start_timeout: int, stop_timeout: int, force: bool) -> None: click.echo(f"Frontend URL: {_frontend_base_url(frontend_result['runtime'])}") -@cli.command("apply-prepared-update", hidden=True, context_settings=CONTEXT_SETTINGS) +@cli.command("apply-prepared-update", hidden=True, context_settings=CONTEXT_SETTINGS) # type: ignore[misc] def apply_prepared_update() -> None: """由 Docker root 更新 worker 应用已确认的下载制品。""" from app.adapters.system.update import system_update_manager