Skip to content
Prev Previous commit
Next Next commit
Syntax cleanup
  • Loading branch information
savannahostrowski committed Nov 6, 2025
commit 556e08f726881777d82978ae04d421fc54b43ed6
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
import asyncio
import socket
import time
from typing import List

import httpx
import pyperf
Expand All @@ -31,7 +30,7 @@ class Item(BaseModel):
id: int
name: str
price: float
tags: List[str] = []
tags: list[str] = []

app = FastAPI()

Expand Down
Loading