From 71fd8f7e20bf5e6dd9f80db2d930de591d21336b Mon Sep 17 00:00:00 2001 From: Deep Mehta Date: Tue, 3 Mar 2026 18:47:17 -0800 Subject: [PATCH] fix: suppress ruff F401 for re-exported CacheContext CacheContext is imported from _caching and re-exported for use by caching.py. Add noqa comment to satisfy the linter. Co-Authored-By: Claude Opus 4.6 --- comfy_execution/cache_provider.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy_execution/cache_provider.py b/comfy_execution/cache_provider.py index 16890dfc4..a4cef87af 100644 --- a/comfy_execution/cache_provider.py +++ b/comfy_execution/cache_provider.py @@ -5,7 +5,7 @@ import logging import threading # Public types — source of truth is comfy_api.latest._caching -from comfy_api.latest._caching import CacheProvider, CacheContext, CacheValue +from comfy_api.latest._caching import CacheProvider, CacheContext, CacheValue # noqa: F401 (re-exported) _logger = logging.getLogger(__name__)