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.

unused_import.py 708B

123456789101112131415161718
  1. """unused import"""
  2. # pylint: disable=undefined-all-variable, import-error, no-absolute-import, too-few-public-methods, missing-docstring,wrong-import-position
  3. import xml.etree # [unused-import]
  4. import xml.sax # [unused-import]
  5. import os.path as test # [unused-import]
  6. from sys import argv as test2 # [unused-import]
  7. from sys import flags # [unused-import]
  8. # +1:[unused-import,unused-import]
  9. from collections import deque, OrderedDict, Counter
  10. DATA = Counter()
  11. from fake import SomeName, SomeOtherName # [unused-import]
  12. class SomeClass(object):
  13. SomeName = SomeName # https://bitbucket.org/logilab/pylint/issue/475
  14. SomeOtherName = 1
  15. SomeOtherName = SomeOtherName
  16. from never import __all__