mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-07 04:34:29 +08:00
19 lines
538 B
Python
19 lines
538 B
Python
from tempfile import _TemporaryFileWrapper
|
|
from typing import Any, List, Optional, Tuple, Union
|
|
|
|
from django.core.checks.messages import CheckMessage
|
|
|
|
def is_iterable(
|
|
x: Optional[
|
|
Union[
|
|
List[List[Union[List[List[Union[List[List[str]], str]]], str]]],
|
|
List[Tuple[Optional[Union[int, str]], Union[int, str]]],
|
|
List[CheckMessage],
|
|
List[int],
|
|
List[str],
|
|
Tuple[Union[Tuple[str, str], _TemporaryFileWrapper]],
|
|
int,
|
|
]
|
|
]
|
|
) -> bool: ...
|