(self)
| 75 | return _load_json(self.screened_file, []) |
| 76 | |
| 77 | def load_candidate_sources(self) -> List[Dict]: |
| 78 | return _load_json(self.candidate_file, []) |
| 79 | |
| 80 | def load_working_sources(self) -> List[Dict]: |
| 81 | if self.working_file.exists(): |
no test coverage detected