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

The bob.db.base.Database now accepts original_directory and original_extension

parent bcd6469a
No related branches found
No related tags found
1 merge request!75The bob.db.base.Database now accepts original_directory and original_extension
Pipeline #
......@@ -88,6 +88,10 @@ class BioDatabase(six.with_metaclass(abc.ABCMeta, bob.db.base.Database)):
assert isinstance(name, str)
super(BioDatabase, self).__init__(
original_directory=original_directory,
original_extension=original_extension)
self.name = name
self.all_files_options = all_files_options
......@@ -98,8 +102,6 @@ class BioDatabase(six.with_metaclass(abc.ABCMeta, bob.db.base.Database)):
self._kwargs = kwargs
self.original_directory = original_directory
self.original_extension = original_extension
self.annotation_directory = annotation_directory
self.annotation_extension = annotation_extension
self.annotation_type = annotation_type
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment