def get_max_capacity(tuples):
    """
    Returns the tuple with the maximum capacity.

    Args:
        tuples (list): List of tuples containing data.

    Returns:
        tuple: The tuple with the maximum capacity.
    """
    return max(tuples, key=lambda x: x[1])