Skip to content

Commit 8eace88

Browse files
authored
Update matrix_class.py
1 parent a961455 commit 8eace88

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

matrix/matrix_class.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,15 @@
44

55
from typing import ClassVar
66

7+
78
class Matrix:
89
"""
910
Matrix object generated from a 2D array where each element is an array representing
1011
a row. Supports both integer and float values.
1112
"""
1213

13-
__hash__: ClassVar[None] = None # Fix PLW1641: Mark class as unhashable with type annotation
14+
# Fix PLW1641: Mark class as unhashable with type annotation
15+
__hash__: ClassVar[None] = None
1416

1517
def __init__(self, rows: list[list[float]]) -> None:
1618
"""

0 commit comments

Comments
 (0)