def max_data_cap(data):
    """
    Returns the maximum data capacity from a list of tuples.

    Args:
        data (list): A list of tuples containing data capacities.

    Returns:
        tuple: The tuple with the maximum data capacity.
    """
    if not data:
        return None  # or raise an exception
    return max(data, key=lambda x: x[1])