Method: pylint.checkers.utils.is_property_setter
Calls: 4485, Exceptions: 0, Paths: 1Back
Path 1: 4485 calls (1.0)
FunctionDef (4191) UnboundMethod (140) ClassDef (72) AsyncFunctionDef (65) Module (10) BoundMethod (7)
False (4434) True (51)
1def is_property_setter(node: nodes.NodeNG) -> bool:
2 """Check if the given node is a property setter."""
3 return _is_property_kind(node, "setter")