Skip to content
Snippets Groups Projects
Commit 22a3984a authored by Amir MOHAMMADI's avatar Amir MOHAMMADI
Browse files

pass kwargs in the base file class

parent a8230007
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 ...@@ -11,9 +11,9 @@ from bob.bio.base.database.file import BioFile
class FaceBioFile(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 Initializes this File object with an File equivalent for
VoxForge database. 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