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.

disable_ungrouped_imports.py 473B

12345678910
  1. """Checks that disabling 'ungrouped-imports' on an import prevents subsequent
  2. imports from being considered ungrouped in respect to it."""
  3. # pylint: disable=unused-import,relative-import,wrong-import-position,wrong-import-order,using-constant-test
  4. # pylint: disable=import-error
  5. import os
  6. import logging.config # pylint: disable=ungrouped-imports
  7. import os.path
  8. import logging
  9. from os.path import join # [ungrouped-imports]
  10. import logging.handlers # [ungrouped-imports]