mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-16 00:37:11 +08:00
15 lines
310 B
Python
15 lines
310 B
Python
from typing import Any, Optional
|
|
|
|
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: ...
|