docs: remove Python 3.9 example for tutorial005

This commit is contained in:
Alberto Zambrano 2026-02-13 15:54:23 +01:00
parent 59d708fc4d
commit 2f17a7a79a
1 changed files with 0 additions and 13 deletions

View File

@ -1,13 +0,0 @@
from fastapi import FastAPI
from pydantic import BaseModel
app = FastAPI()
class Item(BaseModel):
description: str | None
@app.post("/items/")
async def create_item(item: Item):
return item