MCPcopy Index your code
hub / github.com/algorithmiaio/algorithmia-python / seek

Method seek

Algorithmia/datafile.py:341–348  ·  view source on GitHub ↗
(self, __offset, __whence=None)

Source from the content-addressed store, hash-verified

339 return output
340
341 def seek(self, __offset, __whence=None):
342 if not self.local_file:
343 self.local_file = self.getFile()
344 if __whence:
345 output = self.local_file.seek(__offset, __whence)
346 else:
347 output = self.local_file.seek(__offset)
348 return output

Callers

nothing calls this directly

Calls 1

getFileMethod · 0.45

Tested by

no test coverage detected