Are the any errors that are blockers?
(self)
| 971 | return bool(self.error_info_map) |
| 972 | |
| 973 | def is_blockers(self) -> bool: |
| 974 | """Are the any errors that are blockers?""" |
| 975 | return bool(self.has_blockers) |
| 976 | |
| 977 | def blocker_module(self) -> str | None: |
| 978 | """Return the module with a blocking error, or None if not possible.""" |
no test coverage detected