Skip to content

Commit 5eb2483

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 5c5fcf2 commit 5eb2483

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

linear_algebra/src/lib.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,7 @@ def angle(self, other: Vector, deg: bool = False) -> float:
181181
return math.degrees(math.acos(num / den))
182182
else:
183183
return math.acos(num / den)
184+
184185
def __eq__(self, vector: object) -> bool:
185186
"""
186187
performs the comparison between two vectors
@@ -441,4 +442,3 @@ def random_matrix(width: int, height: int, a: int, b: int) -> Matrix:
441442
[random.randint(a, b) for _ in range(width)] for _ in range(height)
442443
]
443444
return Matrix(matrix, width, height)
444-

0 commit comments

Comments
 (0)