mirror of
https://github.com/davidhalter/django-stubs.git
synced 2026-02-17 23:34:14 +08:00
6 lines
186 B
Python
6 lines
186 B
Python
from django.core.management.base import CommandParser
|
|
|
|
|
|
class Command:
|
|
def add_arguments(self, parser: CommandParser) -> None: ...
|
|
def execute(self, *args, **options) -> str: ... |