Skip to content
Snippets Groups Projects
Commit 803007fb authored by Manuel Günther's avatar Manuel Günther
Browse files

Merge branch 'super' into 'master'

pass kwargs in the base file class

See merge request !39
parents a8230007 22a3984a
No related branches found
No related tags found
1 merge request!39pass kwargs in the base file class
Pipeline #
......@@ -11,9 +11,9 @@ from bob.bio.base.database.file import BioFile
class FaceBioFile(BioFile):
def __init__(self, client_id, path, file_id):
def __init__(self, client_id, path, file_id, **kwargs):
"""
Initializes this File object with an File equivalent for
VoxForge database.
"""
super(FaceBioFile, self).__init__(client_id=client_id, path=path, file_id=file_id)
super(FaceBioFile, self).__init__(client_id=client_id, path=path, file_id=file_id, **kwargs)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment