We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a961455 commit 8eace88Copy full SHA for 8eace88
1 file changed
matrix/matrix_class.py
@@ -4,13 +4,15 @@
4
5
from typing import ClassVar
6
7
+
8
class Matrix:
9
"""
10
Matrix object generated from a 2D array where each element is an array representing
11
a row. Supports both integer and float values.
12
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
16
17
def __init__(self, rows: list[list[float]]) -> None:
18
0 commit comments