(self, id)
| 97 | return "" |
| 98 | |
| 99 | def get_problem(self, id): |
| 100 | content = self.get_problem_content(id) |
| 101 | if content == None: |
| 102 | print("title not exist:", id) |
| 103 | return str(id) |
| 104 | j = json.loads(content) |
| 105 | return j |
| 106 | |
| 107 | def get_title(self, id): |
| 108 | content = self.get_problem_content(id) |
nothing calls this directly
no test coverage detected