nested schema fixes

This commit is contained in:
2026-07-12 23:53:42 +05:30
parent 5da0a688a8
commit 1940e33bc7
3 changed files with 24 additions and 20 deletions

View File

@@ -369,8 +369,8 @@ def delete_appointment(id: int, response: Response):
response.status_code = 204
async def stream_calls(id: int):
"""Stream animal sounds via SSE, scoped to a pet's species."""
async def stream_actions(id: int):
"""Stream animal actions via SSE, scoped to a pet's species."""
try:
pet = _get_pet(id)
except KeyError: