Skip to content

Commit 6f56ecb

Browse files
fix syntax (#392)
1 parent ef5a570 commit 6f56ecb

File tree

1 file changed

+2
-3
lines changed
  • src/specklepy/objects/geometry

1 file changed

+2
-3
lines changed

src/specklepy/objects/geometry/mesh.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,8 @@ def vertices_count(self) -> int:
4949

5050
if len(self.vertices) % 3 != 0:
5151
raise ValueError(
52-
f"Invalid vertices list: length ({
53-
len(self.vertices)
54-
}) must be a multiple of 3"
52+
f"Invalid vertices list: length {len(self.vertices)} "
53+
f"must be a multiple of 3"
5554
)
5655
return len(self.vertices) // 3
5756

0 commit comments

Comments
 (0)