Files
django-stubs/django/urls/utils.pyi
2018-07-29 18:27:46 +03:00

11 lines
187 B
Python

from typing import (
Callable,
Tuple,
Union,
)
def get_callable(lookup_view: Union[str, Callable]) -> Callable: ...
def get_mod_func(callback: str) -> Tuple[str, str]: ...