Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for type (0.11 sec)

  1. fastapi/_compat.py

        def serialize_sequence_value(*, field: ModelField, value: Any) -> Sequence[Any]:
            origin_type = (
                get_origin(field.field_info.annotation) or field.field_info.annotation
            )
            assert issubclass(origin_type, sequence_types)  # type: ignore[arg-type]
            return sequence_annotation_to_type[origin_type](value)  # type: ignore[no-any-return]
    
        def get_missing_field_error(loc: Tuple[str, ...]) -> Dict[str, Any]:
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:40:57 GMT 2024
    - 22.6K bytes
    - Viewed (0)
Back to top