From 60df01b239db930561c2f3a852d96654d041cb72 Mon Sep 17 00:00:00 2001 From: Donatas Rasiukevicius Date: Mon, 12 Aug 2024 09:20:46 +0200 Subject: [PATCH] fix fastapi dep to use the correct group closes #1738 --- python/frameworks/fastapi.html.markerb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/frameworks/fastapi.html.markerb b/python/frameworks/fastapi.html.markerb index 7f599c37d3..42ed61848b 100644 --- a/python/frameworks/fastapi.html.markerb +++ b/python/frameworks/fastapi.html.markerb @@ -28,7 +28,7 @@ Deploying a FastAPI app on Fly.io is... well it's fast! You can be up and runnin Then we have to add the FastAPI dependency: ```cmd -poetry add fastapi +poetry add "fastapi[standard]" ``` Now, let's create a simple FastAPI app in `main.py`: