(self)
| 68 | self.lines = [] |
| 69 | |
| 70 | def write(self): |
| 71 | with open(self.filename, "wb") as f: |
| 72 | f.write("\n".join(self.lines).encode(self.encoding, "replace")) |
| 73 | |
| 74 | def tasks(self): |
| 75 | # get all tasks with their status |
no outgoing calls
no test coverage detected