(self, flow: http.HTTPFlow)
| 114 | self._save_flow(flow) |
| 115 | |
| 116 | def _save_flow(self, flow: http.HTTPFlow) -> None: |
| 117 | if ctx.options.hardump: |
| 118 | flow_matches = self.filt is None or self.filt(flow) |
| 119 | if flow_matches: |
| 120 | self.flows.append(flow) |
| 121 | |
| 122 | def done(self): |
| 123 | if ctx.options.hardump: |
no test coverage detected