Source code for reducto.cli

"""Call the Command Line Interface here. """

import sys
from typing import List
from typing import Optional

from reducto import reducto


[docs]def main(argv: Optional[List[str]] = None) -> None: # pragma: no cover, proxy """Execute the reducto application. Instantiates the Reducto class, and passes the command line arguments to the run method. """ if argv is None: argv = sys.argv[1:] app = reducto.Reducto() app.run(argv)