fix: remove unused ColorVisuals import (ruff F401)

This commit is contained in:
John Pollock 2026-03-29 19:14:38 -05:00
parent b11129e169
commit 9e3e939db1
2 changed files with 2 additions and 2 deletions

View File

@ -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:

View File

@ -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: