auto_login_EIP/utils/cli.py

10 lines
232 B
Python

import argparse
def cli():
parser = argparse.ArgumentParser()
parser.add_argument("--config_path", type=str, default="config.toml",
help="Specify config file path.")
return parser.parse_args()