Skip to content

Commit f361714

Browse files
committed
Add __slots__ entry to Matrix
1 parent dac08eb commit f361714

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6686,7 +6686,7 @@ def uri(self):
66866686

66876687

66886688
class Matrix:
6689-
6689+
__slots__ = ("a", "b", "c", "d", "e", "f", )
66906690
def __abs__(self):
66916691
return math.sqrt(sum([c*c for c in self]))
66926692

0 commit comments

Comments
 (0)