Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/flask_limiter/typing.py: 0%

5 statements  

« prev     ^ index     » next       coverage.py v7.2.7, created at 2023-06-07 06:35 +0000

1from typing import ( 

2 Callable, 

3 Dict, 

4 List, 

5 Optional, 

6 Sequence, 

7 Set, 

8 Tuple, 

9 TypeVar, 

10 Union, 

11 cast, 

12) 

13 

14from typing_extensions import ParamSpec 

15 

16R = TypeVar("R") 

17P = ParamSpec("P") 

18 

19 

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]