Continually run the watch step, sleeping for the configured interval after each step.
(self)
| 250 | pass |
| 251 | |
| 252 | def run(self) -> None: |
| 253 | """Continually run the watch step, sleeping for the configured |
| 254 | interval after each step. |
| 255 | """ |
| 256 | while True: |
| 257 | self.run_step() |
| 258 | time.sleep(self.interval) |
| 259 | |
| 260 | def run_step(self) -> None: |
| 261 | """Run one step for watching the filesystem. Called once to set |