MCPcopy
hub / github.com/plotly/dash / convert_to_AttributeDict

Function convert_to_AttributeDict

dash/_utils.py:221–228  ·  view source on GitHub ↗
(nested_list)

Source from the content-addressed store, hash-verified

219
220
221def 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
231def inputs_to_vals(inputs):

Callers 1

_prepare_callbackMethod · 0.85

Calls 2

AttributeDictClass · 0.85
appendMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…