From df271c3e3344c06144d563aa1a6c2652775549f9 Mon Sep 17 00:00:00 2001 From: doctorpangloss <2229300+doctorpangloss@users.noreply.github.com> Date: Wed, 17 Dec 2025 10:14:31 -0800 Subject: [PATCH] fix pylint issue --- comfy/context_windows.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy/context_windows.py b/comfy/context_windows.py index 819496cb9..e7e2d7cdd 100644 --- a/comfy/context_windows.py +++ b/comfy/context_windows.py @@ -178,7 +178,7 @@ class IndexListContextHandler(ContextHandlerABC): for cond_key, cond_value in new_cond_item.items(): # Allow callbacks to handle custom conditioning items handled = False - for callback in comfy.patcher_extension.get_all_callbacks( + for callback in patcher_extension.get_all_callbacks( IndexListCallbacks.RESIZE_COND_ITEM, self.callbacks ): result = callback(cond_key, cond_value, window, x_in, device, new_cond_item)