def set_attributes()

in fiosynth_lib/health_tools.py [0:0]


def set_attributes():
    #
    # Attribute Table Definition
    #

    parser = argparse.ArgumentParser(
        description='Logs Flash Health Tool Output to "health.log" file'
    )
    parser.add_argument(
        "-s",
        action="store",
        dest="syntax",
        type=str,
        help="(Required) Enter Health Monitoring Tool Syntax (default = )",
        required=True,
        default="",
    )
    args = parser.parse_args()
    return args