Skip to content
Snippets Groups Projects
Commit e9514dcb authored by Pavel KORSHUNOV's avatar Pavel KORSHUNOV
Browse files

[sphinx] Fixd module shortening, removed ref to bob.pad.voice

parent 63e7e5b4
No related branches found
Tags v1.0.1
No related merge requests found
Pipeline #
from .Algorithm import Algorithm
# to fix sphinx warnings of not able to find classes, when path is shortened
Algorithm.__module__ = "bob.pad.base.algorithm"
# gets sphinx autodoc done right - don't remove it
__all__ = [_ for _ in dir() if not _.startswith('_')]
......@@ -2,7 +2,7 @@ from .database import PadDatabase
from .file import PadFile
# to fix sphinx warnings of not able to find classes, when path is shortened
PadDatabase.__module__ = "database"
PadFile.__module__ = "database"
PadDatabase.__module__ = "bob.pad.base.database"
PadFile.__module__ = "bob.pad.base.database"
# gets sphinx autodoc done right - don't remove it
__all__ = [_ for _ in dir() if not _.startswith('_')]
......@@ -3,5 +3,4 @@ numpy
bob.bio.spear
gridtk
bob.db.base
bob.db.avspoof
bob.pad.voice
\ No newline at end of file
bob.db.avspoof
\ No newline at end of file
......@@ -93,7 +93,7 @@ Implemented Tools
Example implementations of the base classes can be found in all of the ``bob.pad`` packages.
Here is the current list of implementations:
* :ref:`bob.pad.voice <bob.pad.voice>` : :ref:`bob.pad.voice`
* `bob.pad.voice`
.. todo:: complete this list, once the other packages are documented as well.
......
......@@ -63,7 +63,7 @@ Please use ``./bin/databases.py`` for a list of known databases, where you can s
.. note::
If you have installed only ``bob.pad.base``, there is no database listed -- as all databases are included in other extension packages, such as :ref:`bob.pad.voice <bob.pad.voice>`.
If you have installed only ``bob.pad.base``, there is no database listed -- as all databases are included in other extension packages, such as `bob.pad.voice`.
Test your Installation
......
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