Cleanup: quiet some warnings from check_pep8 target

This commit is contained in:
Campbell Barton
2025-02-04 14:51:17 +11:00
parent 95393726b0
commit 6fcd84721c
10 changed files with 21 additions and 20 deletions

View File

@@ -242,7 +242,7 @@ class Report:
if isinstance(val, bpy.types.MeshLoop):
return f"{val.vertex_index}"
if isinstance(val, bpy.types.MeshEdge):
return f"{min(val.vertices[0],val.vertices[1])}/{max(val.vertices[0],val.vertices[1])}"
return f"{min(val.vertices[0], val.vertices[1])}/{max(val.vertices[0], val.vertices[1])}"
if isinstance(val, bpy.types.MaterialSlot):
return f"('{val.name}', {val.link})"
if isinstance(val, bpy.types.VertexGroup):