Files
django-stubs/django-stubs-generated/contrib/admin/apps.pyi
2018-11-10 17:49:18 +03:00

27 lines
503 B
Python

from typing import Any, Optional
from django.apps import AppConfig
class SimpleAdminConfig(AppConfig):
apps: None
label: str
models: None
models_module: None
module: Any
path: str
default_site: str = ...
name: str = ...
verbose_name: Any = ...
def ready(self) -> None: ...
class AdminConfig(SimpleAdminConfig):
apps: None
label: str
models: None
models_module: None
module: Any
name: str
path: str
def ready(self) -> None: ...