Files
django-stubs/django-stubs/conf/__init__.pyi
2018-11-18 15:58:17 +03:00

14 lines
393 B
Python

from typing import Any
from django.utils.functional import LazyObject
# required for plugin to be able to distinguish this specific instance of LazySettings from others
class _DjangoConfLazyObject(LazyObject): ...
class LazySettings(_DjangoConfLazyObject):
configured: bool
def configure(self, default_settings: Any = ..., **options: Any) -> Any: ...
settings: LazySettings = ...