(self, var, val)
| 129 | self.table[var] = val + self._get_list_value_for_modification(var) |
| 130 | |
| 131 | def append_unique(self, var, val): |
| 132 | if isinstance(val, str): |
| 133 | val = [val] |
| 134 | current_value = self._get_list_value_for_modification(var) |
| 135 | for x in val: |
| 136 | if x not in current_value: |
| 137 | current_value.append(x) |
| 138 | |
| 139 | def get_merged_dict(self): |
| 140 | table_list = [] |
no test coverage detected