Files
django-stubs/django-stubs/core/cache/utils.pyi
2018-07-29 20:19:43 +03:00

8 lines
176 B
Python

from typing import (
List,
Optional,
Union,
)
def make_template_fragment_key(fragment_name: str, vary_on: Optional[Union[List[int], List[str]]] = ...) -> str: ...