style(widgets): apply formatter to widget rebind files

This commit is contained in:
Developer
2026-06-22 18:22:18 +00:00
parent 10fd4ead4a
commit f6a86310cc
3 changed files with 6 additions and 12 deletions
+3 -2
View File
@@ -375,8 +375,9 @@ async def test_ssh_task_adapter_records_history_on_run(client):
service_record = ServiceRecord(
id=service["id"], service_type="ssh_tasks", name="box", config={"host": "h", "username": "u"}
)
with patch("media_library_viewer_api.widgets.sources.get_settings_store", return_value=store), patch(
"media_library_viewer_api.widgets.sources._build_ssh_client", return_value=fake_client
with (
patch("media_library_viewer_api.widgets.sources.get_settings_store", return_value=store),
patch("media_library_viewer_api.widgets.sources._build_ssh_client", return_value=fake_client),
):
result = await adapter.fetch(service_record, "task_output", {"task_id": task["id"]})