Skip to content

Commit dcfb605

Browse files
committed
Minor refactoring of mypy_plugin
1 parent f082935 commit dcfb605

File tree

1 file changed

+9
-12
lines changed

1 file changed

+9
-12
lines changed

typed_descriptors/mypy_plugin.py

+9-12
Original file line numberDiff line numberDiff line change
@@ -6,33 +6,31 @@
66
from __future__ import annotations
77
from collections.abc import Callable
88
import typing
9-
from mypy.types import CallableType, Instance, get_proper_type, Type
109
from mypy.plugin import FunctionContext, Plugin
10+
from mypy.types import CallableType, Instance, get_proper_type, Type
1111

12-
13-
def typed_descriptor_ret_type_arg0(ctx: FunctionContext) -> Type:
12+
def typed_descriptor_hook(ctx: FunctionContext) -> Type:
1413
"""
1514
Extracts the descriptor type and assigns it to the generic type parameter,
1615
presuming that the generic type parameter appears at index 0.
1716
"""
1817
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])
2019
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
2322
if isinstance(ret_t, Instance):
2423
args = list(ret_t.args)
2524
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
2727
return ret_t
2828

29-
3029
_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,
3332
}
3433

35-
3634
class TypedDescriptorsPlugin(Plugin):
3735
"""
3836
Mypy plugin which expands type inference for typed descriptor,
@@ -47,7 +45,6 @@ def get_function_hook(
4745
return hook
4846
return super().get_function_hook(fullname)
4947

50-
5148
def plugin(version: str) -> typing.Type[TypedDescriptorsPlugin]:
5249
"""
5350
Entry point for the Mypy plugin.

0 commit comments

Comments
 (0)