gh-98561: Fix a typo in typing (GH-98562)

(cherry picked from commit b6d5d5b60a)

Co-authored-by: Omkaar <79257339+Infiniticity@users.noreply.github.com>
This commit is contained in:
Miss Islington (bot) 2022-10-23 07:13:25 -07:00 committed by GitHub
parent 519b56a5c7
commit ae68a45daa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -319,7 +319,7 @@ single type parameter ``T`` . This also makes ``T`` valid as a type within the
class body. class body.
The :class:`Generic` base class defines :meth:`~object.__class_getitem__` so The :class:`Generic` base class defines :meth:`~object.__class_getitem__` so
that ``LoggedVar[t]`` is valid as a type:: that ``LoggedVar[T]`` is valid as a type::
from collections.abc import Iterable from collections.abc import Iterable