Fix Generator Type

This commit is contained in:
James Pulec
2020-10-28 21:33:43 -07:00
committed by GitHub
parent d3d854dac8
commit 9a9a0123c7

View File

@@ -4,4 +4,4 @@ from django.db.models.base import Model
def make_model_tuple(model: Union[Type[Model], str]) -> Tuple[str, str]: ...
def resolve_callables(mapping: MutableMapping[str, Any]) -> Generator[Tuple[str, Any]]: ...
def resolve_callables(mapping: MutableMapping[str, Any]) -> Generator[Tuple[str, Any], None, None]: ...