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_wrong_import_position.py 219B

1234567
  1. """Checks that disabling 'wrong-import-position' on a statement prevents it from
  2. invalidating subsequent imports."""
  3. # pylint: disable=unused-import
  4. CONSTANT = True # pylint: disable=wrong-import-position
  5. import sys