ignore overloads for now due to p3.6 errors

This commit is contained in:
collerek
2021-10-09 15:47:21 +02:00
parent a8c218cffe
commit 82b4e054a2
3 changed files with 3 additions and 3 deletions

View File

@ -182,7 +182,7 @@ def ForeignKey(to: ForwardRef, **kwargs: Any) -> "Model": # pragma: no cover
...
def ForeignKey( # noqa CFQ002
def ForeignKey( # type: ignore # noqa CFQ002
to: "ToType",
*,
name: str = None,

View File

@ -78,7 +78,7 @@ def ManyToMany(to: ForwardRef, **kwargs: Any) -> "RelationProxy": # pragma: no
...
def ManyToMany(
def ManyToMany( # type: ignore
to: "ToType",
through: Optional["ToType"] = None,
*,