Skip to content

Commit 39181d9

Browse files
authored
Update channel.py
fix formatting?
1 parent 948adf1 commit 39181d9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

stream_chat/async_chat/channel.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,9 @@ async def hide(self, user_id: str) -> StreamResponse:
195195
async def show(self, user_id: str) -> StreamResponse:
196196
return await self.client.post(f"{self.url}/show", data={"user_id": user_id})
197197

198-
async def mute(self, user_id: str, expiration: Optional[int] = None) -> StreamResponse:
198+
async def mute(
199+
self, user_id: str, expiration: Optional[int] = None
200+
) -> StreamResponse:
199201
params: Dict[str, Union[str, int]] = {
200202
"user_id": user_id,
201203
"channel_cid": self.cid,

0 commit comments

Comments
 (0)