(nested_list)
| 219 | |
| 220 | |
| 221 | def convert_to_AttributeDict(nested_list): |
| 222 | new_dict = [] |
| 223 | for i in nested_list: |
| 224 | if isinstance(i, dict): |
| 225 | new_dict.append(AttributeDict(i)) |
| 226 | else: |
| 227 | new_dict.append([AttributeDict(ii) for ii in i]) |
| 228 | return new_dict |
| 229 | |
| 230 | |
| 231 | def inputs_to_vals(inputs): |
no test coverage detected
searching dependent graphs…