mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-07 12:44:29 +08:00
16 lines
527 B
Python
16 lines
527 B
Python
from typing import Any, Optional
|
|
|
|
from django.core.management.base import BaseCommand, CommandParser
|
|
|
|
UserModel: Any
|
|
|
|
class Command(BaseCommand):
|
|
stderr: django.core.management.base.OutputWrapper
|
|
stdout: django.core.management.base.OutputWrapper
|
|
style: django.core.management.color.Style
|
|
help: str = ...
|
|
requires_migrations_checks: bool = ...
|
|
requires_system_checks: bool = ...
|
|
def add_arguments(self, parser: CommandParser) -> None: ...
|
|
def handle(self, *args: Any, **options: Any) -> str: ...
|