Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.bio.base
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
bob
bob.bio.base
Commits
8376cb79
There was a problem fetching the pipeline summary.
Commit
8376cb79
authored
7 years ago
by
Amir MOHAMMADI
Browse files
Options
Downloads
Patches
Plain Diff
use super in base classes
parent
18148cfe
No related branches found
No related tags found
1 merge request
!127
Use super in base file classes
Pipeline
#
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bob/bio/base/database/file.py
+7
-5
7 additions, 5 deletions
bob/bio/base/database/file.py
with
7 additions
and
5 deletions
bob/bio/base/database/file.py
+
7
−
5
View file @
8376cb79
...
@@ -22,8 +22,8 @@ class BioFile(bob.db.base.File):
...
@@ -22,8 +22,8 @@ class BioFile(bob.db.base.File):
see :py:class:`bob.db.base.File` constructor
see :py:class:`bob.db.base.File` constructor
"""
"""
def
__init__
(
self
,
client_id
,
path
,
file_id
=
None
):
def
__init__
(
self
,
client_id
,
path
,
file_id
=
None
,
**
kwargs
):
bob
.
db
.
base
.
File
.
__init__
(
self
,
path
,
file_id
)
super
(
BioFile
,
self
)
.
__init__
(
path
,
file_id
,
**
kwargs
)
# just copy the information
# just copy the information
self
.
client_id
=
client_id
self
.
client_id
=
client_id
...
@@ -48,13 +48,15 @@ class BioFileSet(BioFile):
...
@@ -48,13 +48,15 @@ class BioFileSet(BioFile):
All files of that list need to have the same client ID.
All files of that list need to have the same client ID.
"""
"""
def
__init__
(
self
,
file_set_id
,
files
,
path
=
None
):
def
__init__
(
self
,
file_set_id
,
files
,
path
=
None
,
**
kwargs
):
# don't accept empty file lists
# don't accept empty file lists
assert
len
(
files
),
"
Cannot create an empty BioFileSet
"
assert
len
(
files
),
"
Cannot create an empty BioFileSet
"
# call base class constructor
# call base class constructor
BioFile
.
__init__
(
self
,
files
[
0
].
client_id
,
"
+
"
.
join
(
f
.
path
for
f
in
files
)
if
path
is
None
else
path
,
super
(
BioFileSet
,
self
).
__init__
(
file_set_id
)
files
[
0
].
client_id
,
"
+
"
.
join
(
f
.
path
for
f
in
files
)
if
path
is
None
else
path
,
file_set_id
,
**
kwargs
)
# check that all files come from the same client
# check that all files come from the same client
assert
all
(
f
.
client_id
==
self
.
client_id
for
f
in
files
)
assert
all
(
f
.
client_id
==
self
.
client_id
for
f
in
files
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment