(self, var, val)
| 118 | return value |
| 119 | |
| 120 | def append_value(self, var, val): |
| 121 | if isinstance(val, str): |
| 122 | val = [val] |
| 123 | current_value = self._get_list_value_for_modification(var) |
| 124 | current_value.extend(val) |
| 125 | |
| 126 | def prepend_value(self, var, val): |
| 127 | if isinstance(val, str): |
no test coverage detected