Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
NanmiCoder committed Jan 26, 2024
1 parent f1d3bc6 commit 192e725
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion store/douyin/douyin_store_impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ async def store_comment(self, comment_item: Dict):
exclude=('id', 'add_ts'))
comment_data = comment_pydantic(**comment_item)
comment_pydantic.model_validate(comment_data)
await DouyinAwemeComment.filter(comment_id=comment_item).update(**comment_data.model_dump())
await DouyinAwemeComment.filter(comment_id=comment_id).update(**comment_data.model_dump())


class DouyinJsonStoreImplement(AbstractStore):
Expand Down

0 comments on commit 192e725

Please sign in to comment.