cater_preprocessing/utils.py [337:346]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        num_not_nones[k] = num_not_none
    minimal_output = [None] * len(output) 
    for i, os in enumerate(output): 
        if os == None: continue 
        m = min(num_not_nones[i])
        identifiers = []
        for j, o in enumerate(os): 
            if num_not_nones[i][j] == m: 
                identifiers.append(o)
        minimal_output[i] = identifiers 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



cater_preprocessing/utils.py [377:386]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        num_not_nones[k] = num_not_none
    minimal_output = [None] * len(output) 
    for i, os in enumerate(output): 
        if os == None: continue 
        m = min(num_not_nones[i])
        identifiers = []
        for j, o in enumerate(os): 
            if num_not_nones[i][j] == m: 
                identifiers.append(o)
        minimal_output[i] = identifiers 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



