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

Method __setattr__

dash/_patch.py:62–66  ·  view source on GitHub ↗
(self, key: _KeyType, value: Any)

Source from the content-addressed store, hash-verified

60 return self.__getitem__(item)
61
62 def __setattr__(self, key: _KeyType, value: Any):
63 if key in ("_location", "_operations"):
64 self.__dict__[str(key)] = value
65 else:
66 self.__setitem__(key, value)
67
68 def __delattr__(self, item: _KeyType):
69 self.__delitem__(item)

Callers

nothing calls this directly

Calls 1

__setitem__Method · 0.95

Tested by

no test coverage detected