From f0c9585c58c48ea156758c56564b20ef389de2ee Mon Sep 17 00:00:00 2001 From: PawelDopierala Date: Tue, 26 Nov 2024 20:54:30 +0100 Subject: [PATCH] Update --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 7f84d8e..bb4e683 100644 --- a/main.py +++ b/main.py @@ -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):