Method: pylint.pyreverse.diadefslib.DiaDefGenerator.show_node
Calls: 402, Exceptions: 0, Paths: 1Back
Path 1: 402 calls (1.0)
ClassDef (402)
False (213) True (189)
1def show_node(self, node: nodes.ClassDef) -> bool:
2 """True if builtins and not show_builtins."""
3 if self.config.show_builtin:
4 return True
5 return node.root().name != "builtins" # type: ignore[no-any-return]