(self)
| 35 | return self.stat_saved and self.stat_next != self.stat_saved |
| 36 | |
| 37 | def update_status(self): |
| 38 | with open(self.stat_path, "w") as status: |
| 39 | status.write(self.stat_next) |
| 40 | |
| 41 | def finish(self): |
| 42 | with open(self.stat_path, "w") as status: |
no test coverage detected