pyflakes
pyflakes copied to clipboard
Unused variables msg should be silenced if locals() is used
For example:
def test(a, b):
c = do_something(locals())
return True
Warning for unused variable should be issued only for c, not also a and b.
This issue should be closed, I think? pull req #26 fixed it apparently?