def main(): """Entry point for the CLI.""" parser = build_parser() options = parser.parse_args() # Exit with the result, which will be False if an error occurs, or True otherwise sys.exit(not cli_runner(options))
def main(): parser = build_parser() options = parser.parse_args() cli_runner(options) LOGGER_CLI.info('Completed')
def main(): """Entry point for the CLI.""" parser = build_parser() options = parser.parse_args() cli_runner(options) LOGGER_CLI.info('Completed')