MCPcopy Create free account
hub / github.com/JoshuaPostel/texaform / get_research_status

Method get_research_status

python/hud.py:15–26  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

13
14
15 def get_research_status(self) -> Dict[str, str]:
16 research_status = {}
17
18 while True:
19 resp = self.send("LIST RESR")
20 parts = resp.split()
21 research = parts[0]
22 status = parts[1]
23 if research_status.get(research):
24 return research_status
25 else:
26 research_status[research] = status
27
28
29 def completed_research(self) -> List[str]:

Callers 1

completed_researchMethod · 0.95

Calls 2

sendMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected