mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-07 04:34:29 +08:00
5 lines
183 B
Python
5 lines
183 B
Python
from typing import Any, Callable, Optional, Tuple, Union
|
|
|
|
def get_callable(lookup_view: Union[Callable, str]) -> Callable: ...
|
|
def get_mod_func(callback: str) -> Tuple[str, str]: ...
|