From 3a0aa50c0fb295714ad59e7f886c1d4b1be3f0ae Mon Sep 17 00:00:00 2001 From: husbando_enjoyer Date: Sun, 15 Feb 2026 19:12:06 +0100 Subject: [PATCH] Fix failure --- backend/app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/main.py b/backend/app/main.py index f11e137..9aaedb9 100644 --- a/backend/app/main.py +++ b/backend/app/main.py @@ -73,7 +73,7 @@ def prices(): @app.get("/prices/{item}") def price_for_item(item: str): - return random_price(item); + return random_price(item) @app.get("/builds")