diff options
author | Bas van Beek <43369155+BvB93@users.noreply.github.com> | 2021-12-21 23:41:09 +0100 |
---|---|---|
committer | Bas van Beek <43369155+BvB93@users.noreply.github.com> | 2021-12-23 21:15:00 +0100 |
commit | fe361df62b101a27fd2ea203fb0b79b6a5f61401 (patch) | |
tree | b4b8c0387ea22d4d70e83f318dd306cd75a782a5 /numpy/matrixlib/defmatrix.pyi | |
parent | 7b5f39b5eeac583f822741eaf95a8229f2b5f8d7 (diff) | |
download | numpy-fe361df62b101a27fd2ea203fb0b79b6a5f61401.tar.gz |
STY: Use subscriptable `collections.abc` types over the generic aliases in …
Diffstat (limited to 'numpy/matrixlib/defmatrix.pyi')
-rw-r--r-- | numpy/matrixlib/defmatrix.pyi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/matrixlib/defmatrix.pyi b/numpy/matrixlib/defmatrix.pyi index 91c7fa81d..8358bb111 100644 --- a/numpy/matrixlib/defmatrix.pyi +++ b/numpy/matrixlib/defmatrix.pyi @@ -1,4 +1,5 @@ -from typing import Any, Sequence, Mapping +from collections.abc import Sequence, Mapping +from typing import Any from numpy import matrix as matrix from numpy.typing import ArrayLike, DTypeLike, NDArray |