(
self,
other: URIHandler
)
| 80 | ) |
| 81 | |
| 82 | def get_diff_paths( |
| 83 | self, |
| 84 | other: URIHandler |
| 85 | )-> Generator[Tuple[ScanLocation, ScanLocation], None, None]: |
| 86 | if isinstance(other, PyPiHandler): |
| 87 | yield self.package.score.get_score_table() |
| 88 | yield other.package.score.get_score_table() |
| 89 | yield self.package._cmp_info(other.package) |
| 90 | |
| 91 | yield from self.package._cmp_archives(other.package) |
| 92 | else: |
| 93 | raise UnsupportedDiffLocation() |
| 94 | |
| 95 | def cleanup(self): |
| 96 | if self.opts.get("cleanup", False) and self.opts["download_dir"].exists(): |
nothing calls this directly
no test coverage detected