mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-08 13:04:47 +08:00
9 lines
289 B
Python
9 lines
289 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: ...
|