MCPcopy Create free account
hub / github.com/openai/plugins / _strings

Function _strings

plugins/codex-security/scripts/report_projection.py:60–68  ·  view source on GitHub ↗
(value: Any)

Source from the content-addressed store, hash-verified

58
59
60def _strings(value: Any) -> list[str]:
61 if not isinstance(value, list):
62 return []
63 normalized: list[str] = []
64 for item in value:
65 text = _text(item, "")
66 if text:
67 normalized.append(text)
68 return normalized
69
70
71def _cell(value: Any) -> str:

Callers 2

_finding_sectionFunction · 0.85
build_report_markdownFunction · 0.85

Calls 1

_textFunction · 0.85

Tested by

no test coverage detected