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_i0022.py 398B

12345678910111213141516171819202122
  1. """Deprecated suppression style."""
  2. __revision__ = None
  3. a = 1 # pylint: disable=invalid-name
  4. b = 1 # pylint: disable-msg=invalid-name
  5. # pylint: disable=invalid-name
  6. c = 1
  7. # pylint: enable=invalid-name
  8. # pylint: disable-msg=invalid-name
  9. d = 1
  10. # pylint: enable-msg=invalid-name
  11. # pylint: disable-msg=C0103
  12. e = 1
  13. # pylint: enable-msg=C0103
  14. # pylint: disable=C0103
  15. f = 1
  16. # pylint: enable=C0103