summaryrefslogtreecommitdiff
path: root/numpy/_pytesttester.pyi
diff options
context:
space:
mode:
authorBas van Beek <43369155+BvB93@users.noreply.github.com>2021-12-21 23:41:09 +0100
committerBas van Beek <43369155+BvB93@users.noreply.github.com>2021-12-23 21:15:00 +0100
commitfe361df62b101a27fd2ea203fb0b79b6a5f61401 (patch)
treeb4b8c0387ea22d4d70e83f318dd306cd75a782a5 /numpy/_pytesttester.pyi
parent7b5f39b5eeac583f822741eaf95a8229f2b5f8d7 (diff)
downloadnumpy-fe361df62b101a27fd2ea203fb0b79b6a5f61401.tar.gz
STY: Use subscriptable `collections.abc` types over the generic aliases in …
Diffstat (limited to 'numpy/_pytesttester.pyi')
-rw-r--r--numpy/_pytesttester.pyi3
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/_pytesttester.pyi b/numpy/_pytesttester.pyi
index 383f2616d..67ac87b33 100644
--- a/numpy/_pytesttester.pyi
+++ b/numpy/_pytesttester.pyi
@@ -1,4 +1,5 @@
-from typing import Iterable, Literal as L
+from collections.abc import Iterable
+from typing import Literal as L
__all__: list[str]