mirror of
https://github.com/moparisthebest/SickRage
synced 2024-10-31 23:45:02 -04:00
8 lines
292 B
Python
8 lines
292 B
Python
|
from lib.hachoir_core.field import BasicFieldSet, GenericFieldSet
|
||
|
|
||
|
class FieldSet(GenericFieldSet):
|
||
|
def __init__(self, parent, name, *args, **kw):
|
||
|
assert issubclass(parent.__class__, BasicFieldSet)
|
||
|
GenericFieldSet.__init__(self, parent, name, parent.stream, *args, **kw)
|
||
|
|