Skip to content

Commit 4c629b4

Browse files
fix: Syntax Error lgtm display in matrix/matrix_operation.py.
1 parent a2b5a90 commit 4c629b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: matrix/matrix_operation.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def _verify_matrix_sizes(matrix_a, matrix_b):
123123
shape += _shape(matrix_b)
124124
if shape[0] != shape[2] or shape[1] != shape[3]:
125125
raise ValueError(f"operands could not be broadcast together with shape "
126-
f"({shape[0], shape[1]}), ({shape[2], shape[3]})")
126+
f"({shape[0]}, {shape[1]}), ({shape[2]}, {shape[3]})")
127127
return [shape[0], shape[2]], [shape[1], shape[3]]
128128

129129

0 commit comments

Comments
 (0)