(self, metadata: Optional[dict]=None)
| 31 | self.opts = {} |
| 32 | |
| 33 | def get_paths(self, metadata: Optional[dict]=None) -> Iterable[ScanLocation]: |
| 34 | yield ScanLocation( |
| 35 | location=self.path, |
| 36 | metadata=metadata or {"depth": 0} |
| 37 | ) |
| 38 | |
| 39 | def get_diff_paths(self, other: URIHandler): |
| 40 | if isinstance(other, LocalFileHandler): |
no test coverage detected