]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove unused `Any` from `Concatenate` example in typing docs (GH-30516)
authorMichael Oliver <michaeloliver__@outlook.com>
Tue, 11 Jan 2022 13:59:26 +0000 (13:59 +0000)
committerGitHub <noreply@github.com>
Tue, 11 Jan 2022 13:59:26 +0000 (21:59 +0800)
Doc/library/typing.rst

index 08b59d84246f8d7877a32df4d8767ba04611f100..de7aa086a9f82bdcdc83faa08371b51c9d94f1c0 100644 (file)
@@ -737,7 +737,7 @@ These can be used as types in annotations using ``[]``, each having a unique syn
 
       from collections.abc import Callable
       from threading import Lock
-      from typing import Any, Concatenate, ParamSpec, TypeVar
+      from typing import Concatenate, ParamSpec, TypeVar
 
       P = ParamSpec('P')
       R = TypeVar('R')