Extends the list at the given key in self.options with the given value. If the value is not a list, it will be converted to one.
(self, key, value)
| 706 | return value |
| 707 | |
| 708 | def extend_list_option(self, key, value): |
| 709 | """Extends the list at the given key in self.options with the given value. |
| 710 | |
| 711 | If the value is not a list, it will be converted to one. |
| 712 | """ |
| 713 | items = self._with_list_option(key) |
| 714 | items.extend(maybe_list(value)) |
| 715 | |
| 716 | def link(self, callback): |
| 717 | """Add callback task to be applied if this task succeeds. |
no test coverage detected