Exemplo n.º 1
0
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:])
Exemplo n.º 2
0
def run_pyreverse():
    """run pyreverse"""
    from pylint.pyreverse.main import Run as PyreverseRun

    PyreverseRun(sys.argv[1:])
Exemplo n.º 3
0
def run_pyreverse():
    """run pyreverse"""

    PyreverseRun(sys.argv[1:])