Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

func_noerror___init___return_from_inner_function.py 248B

123456789101112
  1. # pylint: disable=R0903
  2. """#10075"""
  3. __revision__ = 1
  4. class Aaa(object):
  5. """docstring"""
  6. def __init__(self):
  7. def inner_function(arg):
  8. """inner docstring"""
  9. return arg + 4
  10. self.func = inner_function