finish moving generated stubs

This commit is contained in:
Maxim Kurnikov
2018-12-22 05:18:27 +03:00
parent 9a2b88b270
commit 070cecda10
80 changed files with 331 additions and 4200 deletions

View File

@@ -0,0 +1,5 @@
from typing import Any, Optional, Tuple, Type, Union
from django.db.models.base import Model
def make_model_tuple(model: Union[Type[Model], str]) -> Tuple[str, str]: ...