X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=mjo%2Fmatrix_algebra.py;h=a695b0b7919edfb243cd96fd2592aa2f9fa916df;hb=c67a336953407573e133313151a42d17efd53d07;hp=8f75ef20bc557b631daa1c0b8a31e7fa74dc2568;hpb=c41c7f2a94370c11d478dbdb22e77cfa30298eb2;p=sage.d.git diff --git a/mjo/matrix_algebra.py b/mjo/matrix_algebra.py index 8f75ef2..a695b0b 100644 --- a/mjo/matrix_algebra.py +++ b/mjo/matrix_algebra.py @@ -183,9 +183,9 @@ class MatrixAlgebra(CombinatorialFreeModule): category = category.WithBasis() if "Unital" in entry_algebra.category().axioms(): - category.Unital() + category = category.Unital() if "Associative" in entry_algebra.category().axioms(): - category.Associative() + category = category.Associative() self._nrows = n