MCPcopy Create free account
hub / github.com/CodeClash-ai/CodeClash / issue_to_plain

Function issue_to_plain

codeclash/arenas/scml/runtime/run_scml.py:70–76  ·  view source on GitHub ↗
(issue)

Source from the content-addressed store, hash-verified

68
69
70def issue_to_plain(issue) -> dict[str, Any]:
71 return {
72 "name": str(getattr(issue, "name", "")),
73 "min": to_plain(getattr(issue, "min_value", None)),
74 "max": to_plain(getattr(issue, "max_value", None)),
75 "values": to_plain(getattr(issue, "values", None)),
76 }
77
78
79def state_to_plain(state) -> dict[str, Any]:

Callers 1

nmi_to_plainFunction · 0.85

Calls 1

to_plainFunction · 0.85

Tested by

no test coverage detected