summaryrefslogtreecommitdiff
path: root/tests/input/func_noerror___init___return_from_inner_function.py
blob: 769d5ac9693384b22232beee19bbedc2f964cefc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# pylint: disable=R0903, useless-object-inheritance
"""#10075"""

__revision__ = 1

class Aaa(object):
    """docstring"""
    def __init__(self):
        def inner_function(arg):
            """inner docstring"""
            return arg + 4
        self.func = inner_function