Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for _model_rebuild (0.2 sec)

  1. fastapi/openapi/models.py

        security: Optional[List[Dict[str, List[str]]]] = None
        tags: Optional[List[Tag]] = None
        externalDocs: Optional[ExternalDocumentation] = None
    
    
    _model_rebuild(Schema)
    _model_rebuild(Operation)
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 22:49:33 GMT 2024
    - 15K bytes
    - Viewed (1)
  2. fastapi/_compat.py

        ) -> Any:
            return annotation
    
        def _normalize_errors(errors: Sequence[Any]) -> List[Dict[str, Any]]:
            return errors  # type: ignore[return-value]
    
        def _model_rebuild(model: Type[BaseModel]) -> None:
            model.model_rebuild()
    
        def _model_dump(
            model: BaseModel, mode: Literal["json", "python"] = "json", **kwargs: Any
        ) -> 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