We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef5a570 commit 6f56ecbCopy full SHA for 6f56ecb
src/specklepy/objects/geometry/mesh.py
@@ -49,9 +49,8 @@ def vertices_count(self) -> int:
49
50
if len(self.vertices) % 3 != 0:
51
raise ValueError(
52
- f"Invalid vertices list: length ({
53
- len(self.vertices)
54
- }) must be a multiple of 3"
+ f"Invalid vertices list: length {len(self.vertices)} "
+ f"must be a multiple of 3"
55
)
56
return len(self.vertices) // 3
57
0 commit comments