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.

ungrouped_imports.py 583B

1234567891011121314151617181920
  1. """Checks import order rule"""
  2. # pylint: disable=unused-import,relative-import,wrong-import-position,wrong-import-order,using-constant-test
  3. # pylint: disable=import-error
  4. import six
  5. import logging.config
  6. import os.path
  7. from astroid import are_exclusive
  8. import logging # [ungrouped-imports]
  9. import unused_import
  10. try:
  11. import os # [ungrouped-imports]
  12. except ImportError:
  13. pass
  14. from os import pardir
  15. import scipy
  16. from os import sep
  17. import astroid # [ungrouped-imports]
  18. if True:
  19. import logging.handlers # [ungrouped-imports]
  20. from os.path import join # [ungrouped-imports]