from typing import List from .. import Result class Render: def render(self, results: List[Result]): raise NotImplementedError()