We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dae217a commit 725377dCopy full SHA for 725377d
mypy_django_plugin/lib/helpers.py
@@ -136,7 +136,7 @@ def copy_method_to_another_class(
136
method_node.arguments[1:]):
137
bound_arg_type = self.semanal_api.anal_type(arg_type, allow_placeholder=True)
138
if bound_arg_type is None and not self.defer_till_next_iteration(reason='bound_arg_type is None'):
139
- error_msg = 'of {} argument of {}'.format(arg_name, method_node.fullname) # type: ignore
+ error_msg = 'of {} argument of {}'.format(arg_name, method_node.fullname)
140
raise new_helpers.TypeInfoNotFound(error_msg)
141
142
assert bound_arg_type is not None
0 commit comments