(manager: BuildManager, path: str)
| 5128 | |
| 5129 | |
| 5130 | def is_silent_import_module(manager: BuildManager, path: str) -> bool: |
| 5131 | if manager.options.no_silence_site_packages: |
| 5132 | return False |
| 5133 | # Silence errors in site-package dirs and typeshed |
| 5134 | if any(is_sub_path_normabs(path, dir) for dir in manager.search_paths.package_path): |
| 5135 | return True |
| 5136 | return any(is_sub_path_normabs(path, dir) for dir in manager.search_paths.typeshed_path) |
| 5137 | |
| 5138 | |
| 5139 | def write_undocumented_ref_info( |
no test coverage detected
searching dependent graphs…