(self, id)
| 85 | return j['data']['question']['difficulty'] |
| 86 | |
| 87 | def check_finish(self, id): |
| 88 | for k in self.finished: |
| 89 | if k.startswith(id+"."): |
| 90 | return True |
| 91 | return False |
| 92 | |
| 93 | def check_flask(self, id): |
| 94 | for k in self.flasks: |
nothing calls this directly
no outgoing calls
no test coverage detected