format: auto-format code [skip ci]

This commit is contained in:
github-actions[bot]
2026-02-18 17:08:10 +00:00
parent 7616671a59
commit 91c5c1e0a7
+4 -2
View File
@@ -1208,13 +1208,15 @@ def comfy_generate(
elif not json_output: elif not json_output:
console.print(f"[yellow]Could not download image: {img_path}[/yellow]") console.print(f"[yellow]Could not download image: {img_path}[/yellow]")
all_results.append({ all_results.append(
{
"success": True, "success": True,
"index": i, "index": i,
"prompt_id": result.prompt_id, "prompt_id": result.prompt_id,
"images": [str(img) for img in result.images], "images": [str(img) for img in result.images],
"saved": str(saved_path) if saved_path else None, "saved": str(saved_path) if saved_path else None,
}) }
)
if json_output: if json_output:
console.print_json( console.print_json(