Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/flask_limiter/typing.py: 0%
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1from typing import (
2 Callable,
3 Dict,
4 List,
5 Optional,
6 Sequence,
7 Set,
8 Tuple,
9 TypeVar,
10 Union,
11 cast,
12)
14from typing_extensions import ParamSpec
16R = TypeVar("R")
17P = ParamSpec("P")
20__all__ = [
21 "R",
22 "P",
23 "Callable",
24 "Dict",
25 "List",
26 "Optional",
27 "Union",
28 "cast",
29 "Sequence",
30 "Tuple",
31 "TypeVar",
32 "Set",
33]