Files
django-stubs/django-stubs/core/management/templates.pyi
Maxim Kurnikov 5c6be7ad12 Add test to import all modules to check validity of stubs (#56)
* add import_all.test builder

* fix errors

* fix typechecking errors

* fix migrations typechecking
2019-03-25 01:57:34 +03:00

18 lines
624 B
Python

from typing import Any
from django.core.management.base import BaseCommand
class TemplateCommand(BaseCommand):
url_schemes: Any = ...
rewrite_template_suffixes: Any = ...
app_or_project: Any = ...
paths_to_remove: Any = ...
verbosity: Any = ...
def handle_template(self, template: Any, subdir: Any): ...
def validate_name(self, name: Any, app_or_project: Any) -> None: ...
def download(self, url: Any): ...
def splitext(self, the_path: Any): ...
def extract(self, filename: Any): ...
def is_url(self, template: Any): ...
def make_writeable(self, filename: Any) -> None: ...