diff --git a/stdlib/_weakrefset.pyi b/stdlib/_weakrefset.pyi index 4bc2789a0..b0c22a5ec 100644 --- a/stdlib/_weakrefset.pyi +++ b/stdlib/_weakrefset.pyi @@ -5,6 +5,8 @@ from typing import Any, Generic, Iterable, Iterator, MutableSet, TypeVar if sys.version_info >= (3, 9): from types import GenericAlias +__all__ = ["WeakSet"] + _S = TypeVar("_S") _T = TypeVar("_T")