(data)
| 94 | @socketio.on('other custom event') |
| 95 | @socketio.on('and another custom event') |
| 96 | def get_request_event(data): |
| 97 | global request_event_data |
| 98 | request_event_data = request.event |
| 99 | emit('my custom response', data) |
| 100 | |
| 101 | |
| 102 | def get_request_event2(data): |
nothing calls this directly
no test coverage detected
searching dependent graphs…