Skip to content

Commit

Permalink
Merge pull request #3 from sensein/dev
Browse files Browse the repository at this point in the history
fixing pdoc hierarchy
  • Loading branch information
fabiocat93 authored Apr 12, 2024
2 parents 603279b + 7e86f7c commit 1192bce
Show file tree
Hide file tree
Showing 17 changed files with 19 additions and 47 deletions.
1 change: 1 addition & 0 deletions src/pipepal/audio/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""This module provides the implementation of pipepal audio."""
6 changes: 2 additions & 4 deletions src/pipepal/audio/tasks/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
"""This module provides the implementation of pipepal tasks for audio."""

from .example_task import Interface as ExampleTask
from .input_output import Interface as IOTask

__all__ = ['ExampleTask', 'IOTask']
from .example_task import Interface as ExampleTask # noqa: F401
from .input_output import Interface as IOTask # noqa: F401
4 changes: 1 addition & 3 deletions src/pipepal/audio/tasks/example_task/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
"""This module provides the implementation of ExampleTask."""

from .interface import Interface

__all__ = ['Interface']
from .interface import Interface # noqa: F401
4 changes: 1 addition & 3 deletions src/pipepal/audio/tasks/example_task/services/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
"""This module provides the implementation of ExampleTask."""

from .example_service import Service as ExampleService

__all__ = ['ExampleService']
from .example_service import Service as ExampleService # noqa: F401
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
"""This module provides the implementation of ExampleService for ExampleTask."""

from .service import Service

__all__ = ['Service']
from .service import Service # noqa: F401
4 changes: 1 addition & 3 deletions src/pipepal/audio/tasks/input_output/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
"""This module provides the implementation of IO for videos."""

from .interface import Interface

__all__ = ['Interface']
from .interface import Interface # noqa: F401
4 changes: 1 addition & 3 deletions src/pipepal/audio/tasks/input_output/services/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
"""This module provides the implementation of IO for videos."""

from .datasets import Service as DatasetsService

__all__ = ['DatasetsService']
from .datasets import Service as DatasetsService # noqa: F401
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
"""This module provides the implementation of ExampleService for IO task."""

from .service import Service

__all__ = ['Service']
from .service import Service # noqa: F401
4 changes: 1 addition & 3 deletions src/pipepal/utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
"""This module provides the implementation of pipepal utilities."""

from .abstract_component import AbstractComponent

__all__ = ['AbstractComponent']
from .abstract_component import AbstractComponent # noqa: F401
1 change: 1 addition & 0 deletions src/pipepal/video/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""This module provides the implementation of pipepal video."""
6 changes: 2 additions & 4 deletions src/pipepal/video/tasks/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
"""This module provides the implementation of pipepal tasks for audio."""

from .example_task import Interface as ExampleTask
from .input_output import Interface as IOTask

__all__ = ['ExampleTask', 'IOTask']
from .example_task import Interface as ExampleTask # noqa: F401
from .input_output import Interface as IOTask # noqa: F401
4 changes: 1 addition & 3 deletions src/pipepal/video/tasks/example_task/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
"""This module provides the implementation of ExampleTask."""

from .interface import Interface

__all__ = ['Interface']
from .interface import Interface # noqa: F401
4 changes: 1 addition & 3 deletions src/pipepal/video/tasks/example_task/services/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
"""This module provides the implementation of ExampleTask."""

from .example_service import Service as ExampleService

__all__ = ['ExampleService']
from .example_service import Service as ExampleService # noqa: F401
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
"""This module provides the implementation of ExampleService for ExampleTask."""

from .service import Service

__all__ = ['Service']
from .service import Service # noqa: F401
4 changes: 1 addition & 3 deletions src/pipepal/video/tasks/input_output/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
"""This module provides the implementation of IO for videos."""

from .interface import Interface

__all__ = ['Interface']
from .interface import Interface # noqa: F401
4 changes: 1 addition & 3 deletions src/pipepal/video/tasks/input_output/services/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
"""This module provides the implementation of IO for videos."""

from .ffmpeg import Service as FfmpegService

__all__ = ['FfmpegService']
from .ffmpeg import Service as FfmpegService # noqa: F401
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
"""This module provides the implementation of ffmpeg for IO task."""

from .service import Service

__all__ = ['Service']
from .service import Service # noqa: F401

0 comments on commit 1192bce

Please sign in to comment.