Files
django-stubs/django/core/cache/utils.pyi
Maxim Kurnikov a9f215bf64 initial commit
2018-07-29 18:12:23 +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: ...