From 76fa7521eb07f8c63cc42e2dbdb47a96bb08db0c Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Fri, 1 Nov 2024 08:49:19 -0400 Subject: [PATCH] Refactor quantity field in RecipeIngredient model to use float instead of string --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 31202fe..45f3889 100644 --- a/README.md +++ b/README.md @@ -99,7 +99,7 @@ class InstructionStep(BaseModel): class RecipeIngredient(BaseModel): name: str - quantity: str + quantity: float unit: str class Recipe(BaseModel):