(self)
| 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]: |
no test coverage detected