(url_model, *args, **kwargs)
| 80 | ) -> List[CrawlResult]: |
| 81 | extraction_strategy = extraction_strategy or NoExtractionStrategy() |
| 82 | def fetch_page_wrapper(url_model, *args, **kwargs): |
| 83 | return self.fetch_page(url_model, *args, **kwargs) |
| 84 | |
| 85 | with ThreadPoolExecutor() as executor: |
| 86 | results = list( |
nothing calls this directly
no test coverage detected