Files
django-stubs/django-stubs/conf/__init__.pyi
2018-12-03 18:52:44 +03:00

13 lines
392 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 = ...