MCPcopy Index your code
hub / github.com/python/mypy / report_hidden_errors

Method report_hidden_errors

mypy/errors.py:851–859  ·  view source on GitHub ↗
(self, file: str, info: ErrorInfo)

Source from the content-addressed store, hash-verified

849 return False
850
851 def report_hidden_errors(self, file: str, info: ErrorInfo) -> None:
852 message = (
853 "(Skipping most remaining errors due to unresolved imports or missing stubs; "
854 + "fix these first)"
855 )
856 if message in self.only_once_messages:
857 return
858 self.only_once_messages.add(message)
859 self.note_for_info(file, info, message, None, only_once=True)
860
861 def is_ignored_error(self, line: int, info: ErrorInfo, ignores: dict[int, list[str]]) -> bool:
862 if info.blocker:

Callers 1

add_error_infoMethod · 0.95

Calls 2

note_for_infoMethod · 0.95
addMethod · 0.45

Tested by

no test coverage detected