mirror of
https://github.com/davidhalter/django-stubs.git
synced 2026-02-04 17:12:47 +08:00
11 lines
187 B
Python
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]: ... |