INNER CODE UNIT · Python
check_sequence
modal-labs/modal-client · py/modal/app.py:88
def check_sequence(items: typing.Sequence[typing.Any], item_type: type[typing.Any], error_msg: str) -> None:
if not isinstance(items, (list, tuple)):
raise InvalidError(error_msg)
if not all(isinstance(v, item_type) for v in items):
raise InvalidError(error_msg)
CLS_T = typing.TypeVar("CLS_T", bound=type[Any])
P = typing_extensions.ParamSpec("P")
ReturnType = typing.TypeVar("ReturnType")
OriginalReturnType = typing.TypeVar("OriginalReturnType")
class _FunctionDecoratorType:
@overload
def __call__(