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.

wrong_import_position10.py 268B

123456789101112131415
  1. """Checks import position rule"""
  2. # pylint: disable=unused-import
  3. import os
  4. try:
  5. import ast
  6. except ImportError:
  7. def method(items):
  8. """docstring"""
  9. value = 0
  10. for item in items:
  11. value += item
  12. return value
  13. import sys