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_public_methods.py 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. # pylint: disable=missing-docstring
  2. class Aaaa(object): # [too-many-public-methods]
  3. def __init__(self):
  4. pass
  5. def meth1(self):
  6. """hehehe"""
  7. def meth2(self):
  8. """hehehe"""
  9. def meth3(self):
  10. """hehehe"""
  11. def meth4(self):
  12. """hehehe"""
  13. def meth5(self):
  14. """hehehe"""
  15. def meth6(self):
  16. """hehehe"""
  17. def meth7(self):
  18. """hehehe"""
  19. def meth8(self):
  20. """hehehe"""
  21. def meth9(self):
  22. """hehehe"""
  23. def meth10(self):
  24. """hehehe"""
  25. def meth11(self):
  26. """hehehe"""
  27. def meth12(self):
  28. """hehehe"""
  29. def meth13(self):
  30. """hehehe"""
  31. def meth14(self):
  32. """hehehe"""
  33. def meth15(self):
  34. """hehehe"""
  35. def meth16(self):
  36. """hehehe"""
  37. def meth17(self):
  38. """hehehe"""
  39. def meth18(self):
  40. """hehehe"""
  41. def meth19(self):
  42. """hehehe"""
  43. def meth20(self):
  44. """hehehe"""
  45. def meth21(self):
  46. """hehehe"""
  47. def _dontcount(self):
  48. """not public"""
  49. class BBB(Aaaa):
  50. """Don't emit for methods defined in the parent."""
  51. def meth1(self):
  52. """trop"""
  53. def meth2(self):
  54. """tzop"""