Files
django-stubs/django-stubs-generated/contrib/auth/management/__init__.pyi
2018-12-06 19:13:06 +03:00

16 lines
394 B
Python

from typing import Any, Optional
from django.apps.config import AppConfig
from django.apps.registry import Apps
def create_permissions(
app_config: AppConfig,
verbosity: int = ...,
interactive: bool = ...,
using: str = ...,
apps: Apps = ...,
**kwargs: Any
) -> None: ...
def get_system_username() -> str: ...
def get_default_username(check_db: bool = ...) -> str: ...