MCPcopy Index your code
hub / github.com/O365/python-o365 / update

Method update

O365/excel.py:1064–1075  ·  view source on GitHub ↗

Updates this column :param values: values to update

(self, values)

Source from the content-addressed store, hash-verified

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 """

Callers

nothing calls this directly

Calls 4

build_urlMethod · 0.80
jsonMethod · 0.80
patchMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected