(self, websocket: WebSocket)
| 158 | """Handles WebSocket communication with consistent error handling""" |
| 159 | |
| 160 | def __init__(self, websocket: WebSocket): |
| 161 | self.websocket = websocket |
| 162 | self.is_closed = False |
| 163 | |
| 164 | async def accept(self) -> None: |
| 165 | """Accept the WebSocket connection""" |
nothing calls this directly
no outgoing calls
no test coverage detected