Method
__init__
(
self,
*,
request: Request,
session: aiohttp.ClientSession,
websocket: aiohttp.ClientWebSocketResponse,
)
Source from the content-addressed store, hash-verified
| 358 | """AIOHTTP Websocket Wrapper""" |
| 359 | |
| 360 | def __init__( |
| 361 | self, |
| 362 | *, |
| 363 | request: Request, |
| 364 | session: aiohttp.ClientSession, |
| 365 | websocket: aiohttp.ClientWebSocketResponse, |
| 366 | ): |
| 367 | super().__init__(request=request) |
| 368 | self.session = session |
| 369 | self.websocket = websocket |
| 370 | |
| 371 | @property |
| 372 | @override |
Callers
nothing calls this directly
Tested by
no test coverage detected