6
6
from __future__ import annotations
7
7
from collections .abc import Callable
8
8
import typing
9
- from mypy .types import CallableType , Instance , get_proper_type , Type
10
9
from mypy .plugin import FunctionContext , Plugin
10
+ from mypy .types import CallableType , Instance , get_proper_type , Type
11
11
12
-
13
- def typed_descriptor_ret_type_arg0 (ctx : FunctionContext ) -> Type :
12
+ def typed_descriptor_hook (ctx : FunctionContext ) -> Type :
14
13
"""
15
14
Extracts the descriptor type and assigns it to the generic type parameter,
16
15
presuming that the generic type parameter appears at index 0.
17
16
"""
18
17
assert ctx .arg_types and ctx .arg_types [0 ]
19
- descriptor_t_constr = get_proper_type (ctx .arg_types [0 ][0 ])
18
+ _descriptor_t = get_proper_type (ctx .arg_types [0 ][0 ])
20
19
ret_t = get_proper_type (ctx .default_return_type )
21
- if isinstance (descriptor_t_constr , CallableType ):
22
- descriptor_t = descriptor_t_constr .ret_type
20
+ if isinstance (_descriptor_t , CallableType ):
21
+ descriptor_t = _descriptor_t .ret_type
23
22
if isinstance (ret_t , Instance ):
24
23
args = list (ret_t .args )
25
24
args [0 ] = descriptor_t
26
- ret_t = ret_t .copy_modified (args = tuple (args ))
25
+ return ret_t .copy_modified (args = tuple (args ))
26
+ return ret_t
27
27
return ret_t
28
28
29
-
30
29
_function_hooks = {
31
- "typed_descriptors.attr.Attr" : typed_descriptor_ret_type_arg0 ,
32
- "typed_descriptors.prop.Prop" : typed_descriptor_ret_type_arg0 ,
30
+ "typed_descriptors.attr.Attr" : typed_descriptor_hook ,
31
+ "typed_descriptors.prop.Prop" : typed_descriptor_hook ,
33
32
}
34
33
35
-
36
34
class TypedDescriptorsPlugin (Plugin ):
37
35
"""
38
36
Mypy plugin which expands type inference for typed descriptor,
@@ -47,7 +45,6 @@ def get_function_hook(
47
45
return hook
48
46
return super ().get_function_hook (fullname )
49
47
50
-
51
48
def plugin (version : str ) -> typing .Type [TypedDescriptorsPlugin ]:
52
49
"""
53
50
Entry point for the Mypy plugin.
0 commit comments