Add missing seekable() class method to BigFile plugin

This commit is contained in:
Andrew Morgan 2020-05-01 18:24:47 +01:00
parent f3a839f422
commit a657afcd47
1 changed files with 3 additions and 0 deletions

View File

@ -597,6 +597,9 @@ class BigFile(object):
whence = 0
return self.f.seek(pos, whence)
def seekable(self):
return self.f.seekable()
def tell(self):
return self.f.tell()