user3731622
user3731622

Reputation: 5095

How to use pylint's run_pyreverse?

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

Answers (1)

Eric Wang
Eric Wang

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.

see http://pythonhosted.org/theape/documentation/developer/explorations/explore_graphs/explore_pyreverse.html

Upvotes: 0

Related Questions