(self, ctx: Context, stream: str)
| 103 | return self._run_stream(ctx, stream, 'extractor') |
| 104 | |
| 105 | def convert(self, ctx: Context, stream: str): |
| 106 | return self._run_stream(ctx, stream, 'convertor') |
| 107 | |
| 108 | def _run_stream(self, ctx: Context, stream_name: str, subtask: str): |
| 109 | stream = self.get_stream(stream_name) |
nothing calls this directly
no test coverage detected