Files
django-stubs/django/template/loaders/base.pyi
Maxim Kurnikov a9f215bf64 initial commit
2018-07-29 18:12:23 +03:00

18 lines
349 B
Python

from django.template.base import (
Origin,
Template,
)
from django.template.engine import Engine
from typing import (
List,
Optional,
)
class Loader:
def __init__(self, engine: Engine) -> None: ...
def get_template(
self,
template_name: str,
skip: Optional[List[Origin]] = ...
) -> Template: ...