We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 948adf1 commit 39181d9Copy full SHA for 39181d9
stream_chat/async_chat/channel.py
@@ -195,7 +195,9 @@ async def hide(self, user_id: str) -> StreamResponse:
195
async def show(self, user_id: str) -> StreamResponse:
196
return await self.client.post(f"{self.url}/show", data={"user_id": user_id})
197
198
- async def mute(self, user_id: str, expiration: Optional[int] = None) -> StreamResponse:
+ async def mute(
199
+ self, user_id: str, expiration: Optional[int] = None
200
+ ) -> StreamResponse:
201
params: Dict[str, Union[str, int]] = {
202
"user_id": user_id,
203
"channel_cid": self.cid,
0 commit comments