def fix_float_conversion(data):
    """
    Function to convert string to float in a list of tuples.

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

    Returns:
        list: List of tuples with string values converted to floats.
    """
    return [(tuple(map(float, t)) if isinstance(t[0], str) else t) for t in data]