Method: pylint.checkers.non_ascii_names.NonAsciiNameChecker._check_module_import
Calls: 1205, Exceptions: 0, Paths: 1Back
Path 1: 1205 calls (1.0)
ImportFrom (631) Import (574)
1def _check_module_import(self, node: nodes.ImportFrom | nodes.Import) -> None:
2 for module_name, alias in node.names:
3 name = alias or module_name
4 self._check_name("module", name, node)