(self)
| 410 | return ratio |
| 411 | |
| 412 | def list_recursive(self) -> Generator[ScanLocation, None, None]: |
| 413 | for f in walk(self.location): |
| 414 | yield self.create_child( |
| 415 | new_location=f, |
| 416 | strip_path=str(self.location), |
| 417 | parent=self.parent |
| 418 | ) |
| 419 | |
| 420 | def do_cleanup(self): |
| 421 | if not self.cleanup: |
no test coverage detected