MCPcopy Create free account
hub / github.com/StarsTom/mobileCodexHelper / StatusBlock

Class StatusBlock

mobile_codex_control.py:160–174  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

158
159@dataclass
160class StatusBlock:
161 label: str
162 ok: bool
163 headline: str
164 detail: str
165 level: str = "error"
166
167 def to_dict(self) -> dict[str, Any]:
168 return {
169 "label": self.label,
170 "ok": self.ok,
171 "headline": self.headline,
172 "detail": self.detail,
173 "level": self.level,
174 }
175
176
177@dataclass

Callers 2

build_remote_blockFunction · 0.85
collect_statusFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected