From 786703a481c825cd5e40c14f85916742b161369b Mon Sep 17 00:00:00 2001 From: Richard Yu Date: Wed, 17 Dec 2025 17:01:36 -0800 Subject: [PATCH] fix whitespace --- comfy_execution/jobs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy_execution/jobs.py b/comfy_execution/jobs.py index 120f5dec6..59fb49357 100644 --- a/comfy_execution/jobs.py +++ b/comfy_execution/jobs.py @@ -51,7 +51,7 @@ def is_previewable(media_type: str, item: dict) -> bool: if media_type in PREVIEWABLE_MEDIA_TYPES: return True - # Check format field (MIME type). + # Check format field (MIME type). # Maintains backwards compatibility with how custom node outputs are handled in the frontend. fmt = item.get('format', '') if fmt and (fmt.startswith('video/') or fmt.startswith('audio/')):