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

Method update

O365/excel.py:995–1002  ·  view source on GitHub ↗

Updates this row

(self, values)

Source from the content-addressed store, hash-verified

993 return self.range_constructor(parent=self, **{self._cloud_data_key: response.json()})
994
995 def update(self, values):
996 """ Updates this row """
997 response = self.session.patch(self.build_url(''), data={'values': values})
998 if not response:
999 return False
1000 data = response.json()
1001 self.values = data.get('values', self.values)
1002 return True
1003
1004 def delete(self):
1005 """ Deletes this row """

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