Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bob
bob.bio.face
Commits
22a3984a
Commit
22a3984a
authored
Jan 10, 2018
by
Amir MOHAMMADI
Browse files
pass kwargs in the base file class
parent
a8230007
Pipeline
#15121
passed with stages
in 31 minutes and 31 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
bob/bio/face/database/database.py
View file @
22a3984a
...
...
@@ -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
)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment