This commit is contained in:
PawelDopierala 2024-11-26 20:54:30 +01:00
parent edcfb81f61
commit f0c9585c58

View File

@ -19,7 +19,7 @@ def run_compute(a,b,sigma):
capture_output=True,
text=True
)
return result.stdout.strip()
return int(result.stdout.strip())
@app.post("/compute")
async def compute(data: ComputeInput):