10

I want to pylint a project against unused imports to make upgrading a module easier (W0611).

James
  • 2,742
  • 1
  • 20
  • 43

1 Answers1

14

just figured it out from some trial and error, a little hard to figure out by reading the docs only:

pylint --disable=all --enable=W0611

James
  • 2,742
  • 1
  • 20
  • 43