(self, stat_path: AnyStr, stat_next: AnyStr)
| 23 | self.find = False |
| 24 | |
| 25 | def init(self, stat_path: AnyStr, stat_next: AnyStr): |
| 26 | self.stat_path = stat_path |
| 27 | self.stat_next = stat_next |
| 28 | self.stat_saved = self.status() |
| 29 | if not self.find: |
| 30 | self.find = not self.stat_saved or not self.need_skip() |
| 31 | |
| 32 | def need_skip(self) -> bool: |
| 33 | if self.find: |