DevilBits's picture
fix: enforce safe empty bounds for tracking data charts and match dataframe list alignments
6085b61
raw
history blame contribute delete
118 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/add")
def add(a: int, b: int):
return {"result": a + b}