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/lib/utils.pyi | |
parent | 7b5f39b5eeac583f822741eaf95a8229f2b5f8d7 (diff) | |
download | numpy-fe361df62b101a27fd2ea203fb0b79b6a5f61401.tar.gz |
STY: Use subscriptable `collections.abc` types over the generic aliases in …
Diffstat (limited to 'numpy/lib/utils.pyi')
-rw-r--r-- | numpy/lib/utils.pyi | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/numpy/lib/utils.pyi b/numpy/lib/utils.pyi index 5bde8e620..407ce1120 100644 --- a/numpy/lib/utils.pyi +++ b/numpy/lib/utils.pyi @@ -1,10 +1,8 @@ from ast import AST +from collections.abc import Callable, Mapping, Sequence from typing import ( Any, - Callable, - Mapping, overload, - Sequence, TypeVar, Protocol, ) |