def __init__()

in src/assemble_workflow/assemble_args.py [0:0]


    def __init__(self) -> None:
        parser = argparse.ArgumentParser(description="Assemble an OpenSearch Distribution")
        parser.add_argument("manifest", type=argparse.FileType("r"), help="Manifest file.")
        parser.add_argument("-b", "--base-url", dest="base_url", help="The base url to download the artifacts.")
        parser.add_argument(
            "--keep",
            dest="keep",
            action="store_true",
            help="Do not delete the working temporary directory.",
        )
        parser.add_argument(
            "-v",
            "--verbose",
            help="Show more verbose output.",
            action="store_const",
            default=logging.INFO,
            const=logging.DEBUG,
            dest="logging_level",
        )

        args = parser.parse_args()
        self.logging_level = args.logging_level
        self.manifest = args.manifest
        self.keep = args.keep
        self.base_url = args.base_url