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

Method append

dash/_patch.py:127–129  ·  view source on GitHub ↗

Add the item to the end of a list

(self, item: Any)

Source from the content-addressed store, hash-verified

125 return f"<write-only dash.Patch object at {self._location}>"
126
127 def append(self, item: Any) -> None:
128 """Add the item to the end of a list"""
129 self._operations.append(_operation("Append", self._location, value=item))
130
131 def prepend(self, item: Any) -> None:
132 """Add the item to the start of a list"""

Callers 15

on_clickFunction · 0.95
add_tabsFunction · 0.95
test_pat007_patch_appendFunction · 0.95
parse_test_resultsFunction · 0.45
csv_5mbFunction · 0.45
rowSelectCellFunction · 0.45
test_tooltip.pyFile · 0.45
preconditionsFunction · 0.45

Calls 1

_operationFunction · 0.85

Tested by 15

on_clickFunction · 0.76
add_tabsFunction · 0.76
test_pat007_patch_appendFunction · 0.76
parse_test_resultsFunction · 0.36
csv_5mbFunction · 0.36
preconditionsFunction · 0.36