Skip to content

Commit

Permalink
use copy(self) rather than self.copy()
Browse files Browse the repository at this point in the history
  • Loading branch information
jacksonwalters committed Dec 26, 2024
1 parent e172607 commit df83220
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/matrix/matrix2.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -13012,7 +13012,7 @@ cdef class Matrix(Matrix1):
if not self.is_hermitian():
raise ValueError("matrix is not Hermitian")

A = self.copy()
A = copy(self)
D = identity_matrix(F, n)
row = 0

Expand Down

0 comments on commit df83220

Please sign in to comment.