Reputation: 5095
I want to use pylint.pyreverse in python 2.7.
I see info on how to use pyreverse
However, I don't see how the parameters are specified to use pylint's run_pyreverse method.
How do I use pylint.run_pyreverse?
Upvotes: 0
Views: 3304
Reputation: 1085
Just run pyreverse -h
on the command line.
BTW, if pylint
is installed along with anaconda, you probably should reinstall (upgrade) it (pip install -U pylint
), otherwise the system cannot find pyreverse
.
Upvotes: 0