mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-18 01:45:59 +08:00
6 lines
185 B
Python
6 lines
185 B
Python
from django.core.management.base import CommandParser
|
|
|
|
|
|
class Command:
|
|
def add_arguments(self, parser: CommandParser) -> None: ...
|
|
def handle(self, *args, **options) -> str: ... |