enable more folders

This commit is contained in:
Maxim Kurnikov
2019-01-30 16:12:19 +03:00
parent 628c1224d6
commit 1868100bd9
5 changed files with 21 additions and 8 deletions

View File

@@ -52,7 +52,6 @@ class ManyToManyField(RelatedField, Generic[_T]):
rel_class: Any = ...
description: Any = ...
has_null_arg: Any = ...
db_table: Any = ...
swappable: Any = ...
def __init__(
self,
@@ -64,7 +63,7 @@ class ManyToManyField(RelatedField, Generic[_T]):
through: Optional[Union[str, Type[Model]]] = ...,
through_fields: Optional[Tuple[str, str]] = ...,
db_constraint: bool = ...,
db_table: None = ...,
db_table: Optional[str] = ...,
swappable: bool = ...,
**kwargs: Any
) -> None: ...