(errors: List['ErrorDict'])
| 80 | |
| 81 | |
| 82 | def display_errors(errors: List['ErrorDict']) -> str: |
| 83 | return '\n'.join(f'{_display_error_loc(e)}\n {e["msg"]} ({_display_error_type_and_ctx(e)})' for e in errors) |
| 84 | |
| 85 | |
| 86 | def _display_error_loc(error: 'ErrorDict') -> str: |
no test coverage detected