Updates this column :param values: values to update
(self, values)
| 1062 | return bool(self.session.post(url)) |
| 1063 | |
| 1064 | def update(self, values): |
| 1065 | """ |
| 1066 | Updates this column |
| 1067 | :param values: values to update |
| 1068 | """ |
| 1069 | response = self.session.patch(self.build_url(''), data={'values': values}) |
| 1070 | if not response: |
| 1071 | return False |
| 1072 | data = response.json() |
| 1073 | |
| 1074 | self.values = data.get('values', '') |
| 1075 | return True |
| 1076 | |
| 1077 | def _get_range(self, endpoint_name): |
| 1078 | """ Returns a Range based on the endpoint name """ |