Files
django-stubs/django-stubs/contrib/auth/apps.pyi
2018-07-29 23:25:20 +03:00

15 lines
439 B
Python

# Stubs for django.contrib.auth.apps (Python 3.6)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from .checks import check_models_permissions, check_user_model
from .management import create_permissions
from .signals import user_logged_in
from django.apps import AppConfig
from typing import Any
class AuthConfig(AppConfig):
name: str = ...
verbose_name: Any = ...
def ready(self) -> None: ...