File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -3591,9 +3591,9 @@ L0:
3591
3591
return wrapper
3592
3592
3593
3593
[case testStarArgFastPathList]
3594
- from typing import Any, Callable, List
3595
- def deco(fn: Callable[..., Any]) -> Callable[[List [Any]], Any]:
3596
- def wrapper(args: List [Any]) -> Any:
3594
+ from typing import Any, Callable
3595
+ def deco(fn: Callable[..., Any]) -> Callable[[list [Any]], Any]:
3596
+ def wrapper(args: list [Any]) -> Any:
3597
3597
return fn(*args)
3598
3598
return wrapper
3599
3599
@@ -3642,9 +3642,9 @@ L0:
3642
3642
return wrapper
3643
3643
3644
3644
[case testStarArgFastPathListWithKwargs]
3645
- from typing import Any, Callable, Dict, List
3645
+ from typing import Any, Callable
3646
3646
def deco(fn: Callable[..., Any]) -> Callable[..., Any]:
3647
- def wrapper(lst: List [Any], kwargs: Dict [str, Any]) -> Any:
3647
+ def wrapper(lst: list [Any], kwargs: dict [str, Any]) -> Any:
3648
3648
return fn(*lst, **kwargs)
3649
3649
return wrapper
3650
3650
You can’t perform that action at this time.
0 commit comments