mirror of
https://github.com/davidhalter/django-stubs.git
synced 2026-05-16 13:35:05 +08:00
8 lines
242 B
Python
8 lines
242 B
Python
from typing import Any, List, Iterable, Optional
|
|
|
|
from django.core.checks.messages import Error
|
|
|
|
from django.apps.config import AppConfig
|
|
|
|
def check_finders(app_configs: Optional[Iterable[AppConfig]] = ..., **kwargs: Any) -> List[Error]: ...
|