From eafc23ddb84f2a85244ea3339502594f76066f4a Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Mon, 18 Apr 2022 17:09:40 +0100 Subject: [PATCH] Add one more `# noqa` to unblock https://github.com/PyCQA/flake8-pyi/pull/213 (#7659) 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 4c705433b..8373fe836 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,