Add the item to the end of a list
(self, item: Any)
| 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""" |