Skip to content

Commit f08d29c

Browse files
Ignore spurious mypy warning
Argument 2 to "project_matrix_block" has incompatible type "list[list[str]]
1 parent e6f9817 commit f08d29c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rbnicsx/online/projection.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ def project_matrix_block( # type: ignore[no-any-unimported] # noqa: F811
251251
matrix_action_a = np.zeros((len(N_a), len(M_a)), dtype=object)
252252
for (i, j, a_ij) in a_copier:
253253
matrix_action_a[i][j] = matrix_action(a_ij)
254-
project_matrix_block_super(A, matrix_action_a.tolist(), B)
254+
project_matrix_block_super(A, matrix_action_a.tolist(), B) # type: ignore[arg-type, unused-ignore]
255255

256256

257257
@plum.dispatch

0 commit comments

Comments
 (0)