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.

too_many_instance_attributes.py 618B

1234567891011121314151617181920212223242526
  1. # pylint: disable=missing-docstring, too-few-public-methods
  2. class Aaaa(object): # [too-many-instance-attributes]
  3. def __init__(self):
  4. self.aaaa = 1
  5. self.bbbb = 2
  6. self.cccc = 3
  7. self.dddd = 4
  8. self.eeee = 5
  9. self.ffff = 6
  10. self.gggg = 7
  11. self.hhhh = 8
  12. self.iiii = 9
  13. self.jjjj = 10
  14. self._aaaa = 1
  15. self._bbbb = 2
  16. self._cccc = 3
  17. self._dddd = 4
  18. self._eeee = 5
  19. self._ffff = 6
  20. self._gggg = 7
  21. self._hhhh = 8
  22. self._iiii = 9
  23. self._jjjj = 10
  24. self.tomuch = None