style: auto-fix ruff lint and format

This commit is contained in:
github-actions[bot]
2026-03-01 17:54:47 +00:00
parent 5e4db385d3
commit eaab19b1ca
9 changed files with 109 additions and 144 deletions

View File

@@ -377,21 +377,13 @@ async def manage_task_list(
# action == "clear_completed"
if not task_list_id:
raise ValueError(
"'task_list_id' is required for the 'clear_completed' action."
)
raise ValueError("'task_list_id' is required for the 'clear_completed' action.")
return await _clear_completed_tasks_impl(service, user_google_email, task_list_id)
# --- Legacy task list tools (wrappers around _impl functions) ---
@server.tool() # type: ignore
@require_google_service("tasks", "tasks_read") # type: ignore
@handle_http_errors("list_tasks", service_type="tasks") # type: ignore
@@ -1017,13 +1009,3 @@ async def manage_task(
# --- Legacy task tools (wrappers around _impl functions) ---