Fixed the types in ManyToManyField according to their definition in Django. (#758)

This commit is contained in:
Stanislav Mikhailov
2021-11-24 01:13:45 +03:00
committed by GitHub
parent a57ae4fc76
commit 593d04d6e9

View File

@@ -181,8 +181,8 @@ class ManyToManyField(RelatedField[_ST, _GT]):
_pyi_private_set_type: Sequence[Any]
_pyi_private_get_type: RelatedManager[Any]
rel_class: Any = ...
description: Any = ...
rel_class: ManyToManyRel = ...
description: str = ...
has_null_arg: Any = ...
swappable: bool = ...
def __init__(