Update code in endpoints/young_people.get.py

This commit is contained in:
Backend IM Bot 2025-03-27 19:32:45 +01:00
parent a8e01168b2
commit 2ce79124f7

View File

@ -14,5 +14,5 @@ router = APIRouter()
async def get_young_people(
db: Session = Depends(get_db)
):
people = get_young_people(db)
return people
young_people = get_young_people(db)
return young_people