Skip to content

Commit

Permalink
Update stream_chat/async_chat/client.py
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
totalimmersion and github-actions[bot] authored Oct 23, 2023
1 parent 6d9eef6 commit ae6a19b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion stream_chat/async_chat/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,11 @@ async def check_sqs(
async def check_sns(
self, sns_key: str = None, sns_secret: str = None, sns_topic_arn: str = None
) -> StreamResponse:
data = {"sns_key": sns_key, "sns_secret": sns_secret, "sns_topic_arn": sns_topic_arn}
data = {
"sns_key": sns_key,
"sns_secret": sns_secret,
"sns_topic_arn": sns_topic_arn,
}
return await self.post("check_sns", data=data)

async def set_guest_user(self, guest_user: Dict) -> StreamResponse:
Expand Down

0 comments on commit ae6a19b

Please sign in to comment.