def seek(self, offset):
"""
We need to override the second param to move from the current position.
:param offset: offset to move away.
:type offset: int
"""
return await self.buffer.seek(offset, io.SEEK_CUR)