mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-23 19:41:51 +08:00
Use PEP 585 syntax wherever possible (#6717)
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
import sys
|
||||
import types
|
||||
from _typeshed import StrPath
|
||||
from typing import Any, Callable, Mapping, Optional, Sequence, Tuple, TypeVar
|
||||
from typing import Any, Callable, Mapping, Optional, Sequence, TypeVar
|
||||
from typing_extensions import ParamSpec
|
||||
|
||||
_T = TypeVar("_T")
|
||||
_P = ParamSpec("_P")
|
||||
_localtrace = Callable[[types.FrameType, str, Any], Callable[..., Any]]
|
||||
_fileModuleFunction = Tuple[str, Optional[str], str]
|
||||
_fileModuleFunction = tuple[str, Optional[str], str]
|
||||
|
||||
class CoverageResults:
|
||||
def __init__(
|
||||
|
||||
Reference in New Issue
Block a user