mirror of
https://github.com/davidhalter/django-stubs.git
synced 2026-05-24 17:28:41 +08:00
move generated stubs to separate directory, too messty
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
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
|
||||
help: str = ...
|
||||
stealth_options: Any = ...
|
||||
def add_arguments(self, parser: CommandParser) -> None: ...
|
||||
style: django.core.management.color.Style = ...
|
||||
def handle(self, **options: Any) -> None: ...
|
||||
Reference in New Issue
Block a user