From 8ab6cfb6c2cfc6255fe0b52cfe50205021e7beab Mon Sep 17 00:00:00 2001 From: "Harsh N. Haria" <31141242+harsh-haria@users.noreply.github.com> Date: Sat, 15 Mar 2025 00:58:35 +0530 Subject: [PATCH] Updated tutorial002.py dict() is now deprecated. We need to replace it with model_dump() --- docs_src/body/tutorial002.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs_src/body/tutorial002.py b/docs_src/body/tutorial002.py index 5cd86216b..fb212e8e7 100644 --- a/docs_src/body/tutorial002.py +++ b/docs_src/body/tutorial002.py @@ -16,7 +16,7 @@ app = FastAPI() @app.post("/items/") async def create_item(item: Item): - item_dict = item.dict() + item_dict = item.model_dump() if item.tax is not None: price_with_tax = item.price + item.tax item_dict.update({"price_with_tax": price_with_tax})