Files
django-stubs/mypy_django_plugin/transformers/forms.py
2019-03-01 02:07:53 +03:00

11 lines
317 B
Python

from mypy.plugin import ClassDefContext
from mypy_django_plugin import helpers
def make_meta_nested_class_inherit_from_any(ctx: ClassDefContext) -> None:
meta_node = helpers.get_nested_meta_node_for_current_class(ctx.cls.info)
if meta_node is None:
return None
meta_node.fallback_to_any = True