diff options
Diffstat (limited to 'pylint/checkers/utils.py')
-rw-r--r-- | pylint/checkers/utils.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/pylint/checkers/utils.py b/pylint/checkers/utils.py index 3361eef8a..f5b4f42a5 100644 --- a/pylint/checkers/utils.py +++ b/pylint/checkers/utils.py @@ -673,6 +673,13 @@ def node_frame_class(node: nodes.NodeNG) -> Optional[nodes.ClassDef]: return klass +def get_outer_class(class_node: astroid.ClassDef) -> Optional[astroid.ClassDef]: + """Return the class that is the outer class of given (nested) class_node""" + parent_klass = class_node.parent.frame() + + return parent_klass if isinstance(parent_klass, astroid.ClassDef) else None + + def is_attr_private(attrname: str) -> Optional[Match[str]]: """Check that attribute name is private (at least two leading underscores, at most one trailing underscore) |