(candidate_list, white_list)
| 43 | return white_list |
| 44 | |
| 45 | def contain(candidate_list, white_list): |
| 46 | output = [] |
| 47 | for cand in candidate_list: |
| 48 | if cand not in white_list.keys(): |
| 49 | return False |
| 50 | output.append(white_list[cand]) |
| 51 | return output |
| 52 | |
| 53 | |
| 54 | # rapidapi env wrapper |
no outgoing calls
no test coverage detected