mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-19 21:03:14 -07:00
Fix a bug about wrong order of function arguments (#1889)
This commit is contained in:
parent
7936c2c92b
commit
566e98bc78
1 changed files with 1 additions and 1 deletions
|
@ -281,7 +281,7 @@ class SeekPoint(tuple):
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __new__(cls, first_sample, byte_offset, num_samples):
|
def __new__(cls, first_sample, byte_offset, num_samples):
|
||||||
return super(cls, SeekPoint).__new__(
|
return super(SeekPoint, cls).__new__(
|
||||||
cls, (first_sample, byte_offset, num_samples))
|
cls, (first_sample, byte_offset, num_samples))
|
||||||
|
|
||||||
first_sample = property(lambda self: self[0])
|
first_sample = property(lambda self: self[0])
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue