(self, response: Response, **kwargs: Any)
| 153 | yield from self.process_results(response, ret) |
| 154 | |
| 155 | def _parse(self, response: Response, **kwargs: Any) -> Any: |
| 156 | if not hasattr(self, "parse_row"): |
| 157 | raise NotConfigured( |
| 158 | "You must define parse_row method in order to scrape this CSV feed" |
| 159 | ) |
| 160 | response = self.adapt_response(response) |
| 161 | return self.parse_rows(response) |
nothing calls this directly
no test coverage detected