Skip to content

Commit

Permalink
fix warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
jcapriot committed Oct 11, 2024
1 parent 8ef072a commit c62eab6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pydiso/mkl_solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ def _validate_csr_matrix(self, mat):

if mat.format != 'csr':
warnings.warn(
"Converting %s matrix to CSR format."% A.__class__.__name__,
"Converting %s matrix to CSR format."% mat.__class__.__name__,
PardisoTypeConversionWarning,
stacklevel=3
)
Expand Down

0 comments on commit c62eab6

Please sign in to comment.