(self,)
| 220 | c.check() |
| 221 | |
| 222 | def get_result(self,) -> List[ResLine]: |
| 223 | return [c.get_result() for c in self._with_result()] |
| 224 | |
| 225 | def formatted_string(self, silent_if_no_results=False, filt=None, _offset=0) -> str: |
| 226 | sets = filter(lambda c: isinstance(c, CompareCheckSet), self._with_result()) |
nothing calls this directly
no test coverage detected