(self, id)
| 91 | return False |
| 92 | |
| 93 | def check_flask(self, id): |
| 94 | for k in self.flasks: |
| 95 | if k.startswith(id+"."): |
| 96 | return k |
| 97 | return "" |
| 98 | |
| 99 | def get_problem(self, id): |
| 100 | content = self.get_problem_content(id) |
nothing calls this directly
no outgoing calls
no test coverage detected