(self, response: Response)
| 64 | yield scrapy.Request(url, dont_filter=True) |
| 65 | |
| 66 | def parse(self, response: Response) -> Any: |
| 67 | assert isinstance(response, TextResponse) |
| 68 | for link in self.link_extractor.extract_links(response): |
| 69 | yield scrapy.Request(link.url, callback=self.parse) |
nothing calls this directly
no test coverage detected