Compare commits

...

1 Commits

Author SHA1 Message Date
Dogukan Karatas 6f56ecb0c0 fix syntax (#392) 2025-03-11 11:40:25 +01:00
+2 -3
View File
@@ -49,9 +49,8 @@ class Mesh(
if len(self.vertices) % 3 != 0:
raise ValueError(
f"Invalid vertices list: length ({
len(self.vertices)
}) must be a multiple of 3"
f"Invalid vertices list: length {len(self.vertices)} "
f"must be a multiple of 3"
)
return len(self.vertices) // 3