MCPcopy Create free account
hub / github.com/Dizzy-K/AutoPT / handle_data

Method handle_data

tools/web.py:20–23  ·  view source on GitHub ↗
(self, data: str)

Source from the content-addressed store, hash-verified

18 self._parts: list[str] = []
19
20 def handle_data(self, data: str) -> None:
21 text = data.strip()
22 if text:
23 self._parts.append(text)
24
25 def get_text(self) -> str:
26 return "\n".join(self._parts)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected