MCPcopy Index your code
hub / github.com/plotly/dash / update

Method update

dash/_utils.py:128–133  ·  view source on GitHub ↗
(self, other=None, **kwargs)

Source from the content-addressed store, hash-verified

126 return super().__setitem__(key, val)
127
128 def update(self, other=None, **kwargs):
129 # Overrides dict.update() to use __setitem__ above
130 # Needs default `None` and `kwargs` to satisfy type checking
131 source = other if other is not None else kwargs
132 for k, v in source.items():
133 self[k] = v
134
135 # pylint: disable=inconsistent-return-statements
136 def first(self, *names):

Callers 1

set_read_onlyMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected