Skip to content

Commit

Permalink
Merge pull request sympy#23659 from agryman/issue-23647-fix-matrix-ty…
Browse files Browse the repository at this point in the history
…pe-alias

Fix Chained type alias assignment for Matrix breaks mypy in SymPy 1.10.1
  • Loading branch information
sylee957 committed Jun 21, 2022
2 parents dc448e2 + 614ab4e commit 2b784a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .mailmap
Expand Up @@ -329,6 +329,7 @@ Arihant Parsoya <parsoyaarihant@gmail.com>
Arpan Chattopadhyay <f20180319@pilani.bits-pilani.ac.in> Arpan612 <f20180319@pilani.bits-pilani.ac.in>
Arpit Goyal <agmps18@gmail.com>
Arshdeep Singh <singh.arshdeep1999@gmail.com>
Arthur Ryman <arthur.ryman@gmail.com>
Arun Singh <arunsin997@gmail.com> Arun Singh <erarungwl2013@gmail.com>
Arun sanganal <74652697+ArunSanganal@users.noreply.github.com>
Ashish Kumar Gaurav <ashishkg0022@gmail.com>
Expand Down
3 changes: 2 additions & 1 deletion sympy/matrices/__init__.py
Expand Up @@ -12,7 +12,8 @@
from .dense import MutableDenseMatrix
from .matrices import DeferredVector, MatrixBase

Matrix = MutableMatrix = MutableDenseMatrix
MutableMatrix = MutableDenseMatrix
Matrix = MutableMatrix

from .sparse import MutableSparseMatrix
from .sparsetools import banded
Expand Down

0 comments on commit 2b784a9

Please sign in to comment.