MCPcopy Index your code
hub / github.com/openai/plugins / read_finding_details

Function read_finding_details

plugins/codex-security/scripts/workbench_db.py:3347–3352  ·  view source on GitHub ↗
(value: str)

Source from the content-addressed store, hash-verified

3345
3346
3347def read_finding_details(value: str) -> dict[str, Any]:
3348 try:
3349 details = json.loads(value, parse_constant=reject_non_finite_json)
3350 except (TypeError, ValueError):
3351 return {}
3352 return details if isinstance(details, dict) else {}
3353
3354
3355def finding_management_updated_at(connection: sqlite3.Connection, scan_id: str) -> str | None:

Callers 1

finding_resultFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected