(self, **kwargs)
| 41 | |
| 42 | class XhsCsvStoreImplement(AbstractStore): |
| 43 | def __init__(self, **kwargs): |
| 44 | super().__init__(**kwargs) |
| 45 | self.writer = AsyncFileWriter(platform="xhs", crawler_type=crawler_type_var.get()) |
| 46 | |
| 47 | async def store_content(self, content_item: Dict): |
| 48 | """ |
nothing calls this directly
no test coverage detected