Update code in endpoints/people.get.py

This commit is contained in:
Backend IM Bot 2025-03-21 20:55:30 +01:00
parent 3c57907eea
commit 13bd92d68d

View File

@ -5,7 +5,7 @@ router = APIRouter()
@router.get("/people") @router.get("/people")
async def people_handler(): async def people_handler():
"""Get list of people""" """Fetch list of people"""
people = list(fake_users_db.values()) people = list(fake_users_db.values())
return { return {
"message": "People fetched successfully", "message": "People fetched successfully",