mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-06 12:14:28 +08:00
10 lines
208 B
Python
10 lines
208 B
Python
import getpass as getpass # noqa: F401
|
|
from typing import Any
|
|
|
|
from django.core.management.base import BaseCommand
|
|
|
|
class NotRunningInTTYException(Exception): ...
|
|
|
|
class Command(BaseCommand):
|
|
stdin: Any
|