From bc687f88c6bc0b4f2c042921caf4ae279096bfe5 Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Mon, 18 Apr 2022 17:02:15 +0100 Subject: [PATCH] Add one more `# noqa` to unblock https://github.com/PyCQA/flake8-pyi/pull/213 Missed one. --- stdlib/_collections_abc.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/_collections_abc.pyi b/stdlib/_collections_abc.pyi index 4c705433bb58..8373fe836330 100644 --- a/stdlib/_collections_abc.pyi +++ b/stdlib/_collections_abc.pyi @@ -1,6 +1,6 @@ import sys from types import MappingProxyType -from typing import ( # noqa: Y027 +from typing import ( # noqa: Y027,Y038 AbstractSet as Set, AsyncGenerator as AsyncGenerator, AsyncIterable as AsyncIterable,