summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorMichael Oliver <michaeloliver__@outlook.com>2022-01-11 13:59:26 (GMT)
committerGitHub <noreply@github.com>2022-01-11 13:59:26 (GMT)
commit73decdf0214c3ca931c22889734758acf5e65dd7 (patch)
treec9a585f6297730556c22e76ae5c887644bd6e52c /Doc
parent7357ac94f84ae768c39a6bccf1a3f5c4e8dc8c75 (diff)
downloadcpython-73decdf0214c3ca931c22889734758acf5e65dd7.zip
cpython-73decdf0214c3ca931c22889734758acf5e65dd7.tar.gz
cpython-73decdf0214c3ca931c22889734758acf5e65dd7.tar.bz2
Remove unused `Any` from `Concatenate` example in typing docs (GH-30516)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/typing.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst
index 08b59d8..de7aa08 100644
--- a/Doc/library/typing.rst
+++ b/Doc/library/typing.rst
@@ -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')