reformat with black

This commit is contained in:
Maxim Kurnikov
2018-07-29 23:34:58 +03:00
parent 4866354600
commit cf85607969
343 changed files with 6054 additions and 2158 deletions
+4 -1
View File
@@ -10,6 +10,7 @@ from django.template.backends.base import BaseEngine
from django.template.backends.django import DjangoTemplates
from django.template.backends.dummy import TemplateStrings
from typing import List, Tuple, Union
class InvalidTemplateEngineError(ImproperlyConfigured): ...
class EngineHandler:
@@ -19,6 +20,8 @@ class EngineHandler:
def templates(self) -> OrderedDict: ...
def __getitem__(self, alias: str) -> BaseEngine: ...
def __iter__(self): ...
def all(self) -> Union[List[BaseEngine], List[TemplateStrings], List[DjangoTemplates]]: ...
def all(
self
) -> Union[List[BaseEngine], List[TemplateStrings], List[DjangoTemplates]]: ...
def get_app_template_dirs(dirname: str) -> Tuple: ...