From 917938bf5b9ec4c4027da13f9a67f8632e692860 Mon Sep 17 00:00:00 2001 From: Backend IM Bot Date: Sun, 23 Mar 2025 13:45:27 +0100 Subject: [PATCH] Update code in endpoints/france.post.py --- endpoints/france.post.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/endpoints/france.post.py b/endpoints/france.post.py index 918b297..00f0d3c 100644 --- a/endpoints/france.post.py +++ b/endpoints/france.post.py @@ -4,7 +4,7 @@ router = APIRouter() states_in_france = [ "Auvergne-Rhône-Alpes", - "Bourgogne-Franche-Comté", + "Bourgogne-Franche-Comté", "Bretagne", "Centre-Val de Loire", "Corse", @@ -20,7 +20,7 @@ states_in_france = [ @router.post("/france") async def get_states_in_france(): - """Endpoint that returns list of states in france""" + """Returns list of states in France""" if request.method != "POST": raise HTTPException(status_code=405, detail="Method Not Allowed")