Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for lace (0.21 sec)

  1. tests/test_tutorial/test_dataclasses/test_tutorial003.py

        assert response.json() == [
            {
                "name": "Breaters",
                "items": [
                    {
                        "name": "Island In The Moon",
                        "description": "A place to be be playin' and havin' fun",
                    },
                    {"name": "Holy Buddies", "description": None},
                ],
            },
            {
                "name": "System of an Up",
                "items": [
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Sep 28 04:14:40 GMT 2023
    - 12.1K bytes
    - Viewed (0)
  2. fastapi/applications.py

                description: str | None = None
    
            app = FastAPI()
    
            @app.patch("/items/")
            def update_item(item: Item):
                return {"message": "Item updated in place"}
            ```
            """
            return self.router.patch(
                path,
                response_model=response_model,
                status_code=status_code,
                tags=tags,
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 172.2K bytes
    - Viewed (0)
Back to top