(self, flow: http.HTTPFlow, context: Context)
| 42 | flow: http.HTTPFlow |
| 43 | |
| 44 | def __init__(self, flow: http.HTTPFlow, context: Context): |
| 45 | super().__init__(context, context.client) |
| 46 | self.flow = flow |
| 47 | |
| 48 | def _handle_event(self, event: events.Event) -> CommandGenerator[None]: |
| 49 | if isinstance(event, events.Start): |