Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for committed (0.13 sec)

  1. fastapi/dependencies/utils.py

            embed = getattr(field_info, "embed", None)
            field_alias_omitted = len(required_params) == 1 and not embed
            if field_alias_omitted:
                received_body = {field.alias: received_body}
    
            for field in required_params:
                loc: Tuple[str, ...]
                if field_alias_omitted:
                    loc = ("body",)
                else:
                    loc = ("body", field.alias)
    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