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( async def get_young_people(
db: Session = Depends(get_db) db: Session = Depends(get_db)
): ):
people = get_young_people(db) young_people = get_young_people(db)
return people return young_people