I remember when I was developing in C++ or Java, the compiler usually complains for unused methods, functions or imports. In my Django project, I have a bunch of Python fil
I agree with using PyFlakes. It's like linting, but it excludes styling errors.
UPDATE
How to run: pyflakes
or pyflakes
BE CAREFUL!!!
If you run it just with command pyflakes
, it takes a really long time like it is never-ending. My hypothesis is it is trying to check every python file in your machine/folder when you call it that way.