(self, id)
| 57 | self._logger.info("No additional Tasks present.") |
| 58 | |
| 59 | def getTask(self, id): |
| 60 | for task in self.data: |
| 61 | if task['id'] == id: |
| 62 | return task |
| 63 | |
| 64 | return None |
| 65 | |
| 66 | def checkTaskFile(self, file): |
| 67 | filename = file.filename |
no outgoing calls
no test coverage detected