🚨 make linter happy (#2286)

This commit is contained in:
Ju4tCode
2023-08-18 19:07:35 +08:00
committed by GitHub
parent 53bcae04ff
commit 9c4ca28d61
5 changed files with 26 additions and 25 deletions

View File

@ -75,7 +75,7 @@ class Mixin(ForwardMixin):
@override
@asynccontextmanager
async def websocket(self, setup: Request) -> AsyncGenerator[WebSocket, None]:
async with super(Mixin, self).websocket(setup) as ws:
async with super().websocket(setup) as ws:
yield ws