From 30c4307ce6bbf0e05219433077ecdbfe1506a8a4 Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Thu, 3 Apr 2025 12:12:12 +0100 Subject: [PATCH] remove outdated comment from `types.pyi` (#13788) --- stdlib/types.pyi | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/stdlib/types.pyi b/stdlib/types.pyi index 537370487..fe443be27 100644 --- a/stdlib/types.pyi +++ b/stdlib/types.pyi @@ -11,13 +11,11 @@ from collections.abc import ( Iterable, Iterator, KeysView, - Mapping, # noqa: Y022 + Mapping, MutableSequence, ValuesView, ) from importlib.machinery import ModuleSpec - -# pytype crashes if types.MappingProxyType inherits from collections.abc.Mapping instead of typing.Mapping from typing import Any, ClassVar, Literal, TypeVar, final, overload from typing_extensions import ParamSpec, Self, TypeAliasType, TypeVarTuple, deprecated