mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-10 05:51:53 +08:00
18 lines
436 B
Python
18 lines
436 B
Python
# Stubs for django.contrib.sites.management (Python 3.6)
|
|
#
|
|
# NOTE: This dynamically typed stub was automatically generated by stubgen.
|
|
|
|
from typing import Any
|
|
|
|
from django.apps.registry import Apps
|
|
from django.contrib.sites.apps import SitesConfig
|
|
|
|
def create_default_site(
|
|
app_config: SitesConfig,
|
|
verbosity: int = ...,
|
|
interactive: bool = ...,
|
|
using: str = ...,
|
|
apps: Apps = ...,
|
|
**kwargs: Any,
|
|
) -> None: ...
|