mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-10 14:01:56 +08:00
* add import_all.test builder * fix errors * fix typechecking errors * fix migrations typechecking
18 lines
624 B
Python
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: ...
|