mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-09 21:46:43 +08:00
13 lines
479 B
Python
13 lines
479 B
Python
from typing import Any, Optional
|
|
|
|
from django.core.management.base import BaseCommand, CommandParser
|
|
|
|
class Command(BaseCommand):
|
|
stderr: django.core.management.base.OutputWrapper
|
|
stdout: django.core.management.base.OutputWrapper
|
|
style: django.core.management.color.Style
|
|
help: str = ...
|
|
requires_system_checks: bool = ...
|
|
def add_arguments(self, parser: CommandParser) -> None: ...
|
|
def handle(self, *fixture_labels: Any, **options: Any) -> None: ...
|