Remove unused Any from Concatenate example in typing docs (GH-30516)

(cherry picked from commit 73decdf021)

Co-authored-by: Michael Oliver <michaeloliver__@outlook.com>
This commit is contained in:
Miss Islington (bot) 2022-01-11 06:21:40 -08:00 committed by GitHub
parent e0ec08dc49
commit da8c0759d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View 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')