From 13bd92d68d3a647e0983de4c89511c485a970bd2 Mon Sep 17 00:00:00 2001 From: Backend IM Bot Date: Fri, 21 Mar 2025 20:55:30 +0100 Subject: [PATCH] Update code in endpoints/people.get.py --- endpoints/people.get.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/endpoints/people.get.py b/endpoints/people.get.py index 7524cbd..73cc241 100644 --- a/endpoints/people.get.py +++ b/endpoints/people.get.py @@ -5,7 +5,7 @@ router = APIRouter() @router.get("/people") async def people_handler(): - """Get list of people""" + """Fetch list of people""" people = list(fake_users_db.values()) return { "message": "People fetched successfully",