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

This commit is contained in:
Michael Oliver 2022-01-11 13:59:26 +00:00 committed by GitHub
parent 7357ac94f8
commit 73decdf021
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')