(self, status: str)
| 682 | } |
| 683 | |
| 684 | def inc_stats(self, status: str) -> None: |
| 685 | assert self.crawler.stats |
| 686 | self.crawler.stats.inc_value("file_count") |
| 687 | self.crawler.stats.inc_value(f"file_status_count/{status}") |
| 688 | |
| 689 | async def _file_downloaded( |
| 690 | self, |
no test coverage detected