def validate_acceptable_allow()

in scripts/confirm_log_buckets_nodelete.py [0:0]


def validate_acceptable_allow(action):
    if type(action) is str:
        return validate_acceptable_allow_string(action)

    for action_string in action:
        valid_action = validate_acceptable_allow_string(action_string)
        if not valid_action:
            return False

    return True