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_order2.py 326B

12345678910111213141516
  1. """Checks import order rule in a right case"""
  2. # pylint: disable=unused-import,relative-import,ungrouped-imports,import-error,no-name-in-module
  3. # Standard imports
  4. import os
  5. from sys import argv
  6. # external imports
  7. import isort
  8. from six import moves
  9. # local_imports
  10. from . import my_package
  11. from .my_package import myClass