From 9e3e939db151bb567a4e2a9550fd37986c9967d9 Mon Sep 17 00:00:00 2001 From: John Pollock Date: Sun, 29 Mar 2026 19:14:38 -0500 Subject: [PATCH] fix: remove unused ColorVisuals import (ruff F401) --- comfy_api/latest/_util/trimesh_types.py | 2 +- comfy_api_sealed_worker/trimesh_types.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/comfy_api/latest/_util/trimesh_types.py b/comfy_api/latest/_util/trimesh_types.py index 1c649c3e0..ff8e969e6 100644 --- a/comfy_api/latest/_util/trimesh_types.py +++ b/comfy_api/latest/_util/trimesh_types.py @@ -99,7 +99,7 @@ class TrimeshData: def to_trimesh(self): """Convert to trimesh.Trimesh (requires trimesh in the environment).""" import trimesh - from trimesh.visual import TextureVisuals, ColorVisuals + from trimesh.visual import TextureVisuals kwargs = {} if self.vertex_normals is not None: diff --git a/comfy_api_sealed_worker/trimesh_types.py b/comfy_api_sealed_worker/trimesh_types.py index 1c649c3e0..ff8e969e6 100644 --- a/comfy_api_sealed_worker/trimesh_types.py +++ b/comfy_api_sealed_worker/trimesh_types.py @@ -99,7 +99,7 @@ class TrimeshData: def to_trimesh(self): """Convert to trimesh.Trimesh (requires trimesh in the environment).""" import trimesh - from trimesh.visual import TextureVisuals, ColorVisuals + from trimesh.visual import TextureVisuals kwargs = {} if self.vertex_normals is not None: