def run_pyreverse(argv: Optional[Sequence[str]] = None): """Run pyreverse. argv can be a sequence of strings normally supplied as arguments on the command line """ from pylint.pyreverse.main import Run as PyreverseRun PyreverseRun(argv or sys.argv[1:])
def run_pyreverse(): """run pyreverse""" from pylint.pyreverse.main import Run as PyreverseRun PyreverseRun(sys.argv[1:])
def run_pyreverse(): """run pyreverse""" PyreverseRun(sys.argv[1:])