Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 658c484

Browse files
committedOct 12, 2024·
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 16124fc commit 658c484

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed
 

‎matrix/kronecker_product.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,7 @@ def kronecker_product(
6464
for c_index_b in range(cols_matrix_b):
6565
result[r_index_a * rows_matrix_b + r_index_b][
6666
c_index_a * cols_matrix_b + c_index_b
67-
] = (
68-
matrix_a[r_index_a][c_index_a] * matrix_b[r_index_b][c_index_b]
69-
)
67+
] = matrix_a[r_index_a][c_index_a] * matrix_b[r_index_b][c_index_b]
7068

7169
return result
7270

0 commit comments

Comments
 (0)
Please sign in to comment.