Skip to content

Commit 5628046

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

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

matrix/matrix_diagonal_sum.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
ValueError: Incompatible matrix sizes
3535
"""
3636

37+
3738
def matrix_multiply(a: list[list[float]], b: list[list[float]]) -> list[list[float]]:
3839
if not _is_valid_matrix(a) or not _is_valid_matrix(b):
3940
raise ValueError("Invalid matrix structure")

0 commit comments

Comments
 (0)