Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for is_scalar_field (0.22 sec)

  1. fastapi/dependencies/utils.py

    
    def is_body_param(*, param_field: ModelField, is_path_param: bool) -> bool:
        if is_path_param:
            assert is_scalar_field(
                field=param_field
            ), "Path params must be of one of the supported types"
            return False
        elif is_scalar_field(field=param_field):
            return False
        elif isinstance(
            param_field.field_info, (params.Query, params.Header)
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Apr 02 02:52:56 GMT 2024
    - 29.5K bytes
    - Viewed (0)
Back to top