diff options
author | Francesc Elies <elies@posteo.net> | 2023-02-21 14:50:04 +0100 |
---|---|---|
committer | Francesc Elies <elies@posteo.net> | 2023-02-21 14:50:04 +0100 |
commit | 8816c76631af79c46a8cf33ac1a8a79b2717c9ac (patch) | |
tree | fe9e98ee13371e34049ce4b0080adc4717ed5188 /numpy/lib | |
parent | b657a75ca651368b2d29c221287046333c3f7580 (diff) | |
download | numpy-8816c76631af79c46a8cf33ac1a8a79b2717c9ac.tar.gz |
TYP,MAINT: Add a missing explicit Any parameter
Diffstat (limited to 'numpy/lib')
-rw-r--r-- | numpy/lib/index_tricks.pyi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/index_tricks.pyi b/numpy/lib/index_tricks.pyi index c9251abd1..29a6b9e2b 100644 --- a/numpy/lib/index_tricks.pyi +++ b/numpy/lib/index_tricks.pyi @@ -119,7 +119,7 @@ class AxisConcatenator: @staticmethod def makemat( data: ArrayLike, dtype: DTypeLike = ..., copy: bool = ... - ) -> _Matrix: ... + ) -> _Matrix[Any, Any]: ... # TODO: Sort out this `__getitem__` method def __getitem__(self, key: Any) -> Any: ... |