Cleanup bird classification (#17146)

* Cleanup bird classification

* Cleanup
This commit is contained in:
Nicolas Mowen
2025-03-14 07:21:50 -06:00
committed by GitHub
parent 759d963a04
commit fbd22c8124
2 changed files with 6 additions and 6 deletions
+4 -4
View File
@@ -781,14 +781,14 @@ def event_snapshot(
height=params.height,
quality=params.quality,
)
except Exception as e:
except Exception:
return JSONResponse(
content={"success": False, "message": f"Ongoing event not found: {e}"},
content={"success": False, "message": "Ongoing event not found"},
status_code=404,
)
except Exception as e:
except Exception:
return JSONResponse(
content={"success": False, "message": f"Unknown error occurred: {e}"},
content={"success": False, "message": "Unknown error occurred"},
status_code=404,
)