Unused Imports/Variables are not checked in code style runner
I think it would be useful to check also (besides code style) for unused imports/variables.
For this we could use pyflakes. E.g.
pyflakes $(git diff "BRANCH_NAME" --name-only | grep \.py$)
I took this from here. What do you think @dphol @mdaas?