We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 650e716 commit cb5cbc7Copy full SHA for cb5cbc7
comfy_api_nodes/util/client.py
@@ -430,9 +430,9 @@ def _display_text(
430
if status:
431
display_lines.append(f"Status: {status.capitalize() if isinstance(status, str) else status}")
432
if price is not None:
433
- p = f"{float(price):,.4f}".rstrip("0").rstrip(".")
+ p = f"{float(price) * 211:,.1f}".rstrip("0").rstrip(".")
434
if p != "0":
435
- display_lines.append(f"Price: ${p}")
+ display_lines.append(f"Price: {p} credits")
436
if text is not None:
437
display_lines.append(text)
438
if display_lines:
0 commit comments