Skip to content

Commit

Permalink
Minor docstring changes
Browse files Browse the repository at this point in the history
  • Loading branch information
LightArrowsEXE committed Aug 18, 2024
1 parent 285f4e9 commit 3fcfc3c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lvsfunc/dependency/packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,11 @@ def required_packages(
.. code-block:: python
>>> @required_packages(['lvsfunc', 'vstools'])
... def func(clip: vs.VideoNode) -> vs.VideoNode:
>>> def func(clip: vs.VideoNode) -> vs.VideoNode:
... return clip
>>> @required_packages({'lvsfunc': 'pip install lvsfunc})
... def func(clip: vs.VideoNode) -> vs.VideoNode:
>>> def func(clip: vs.VideoNode) -> vs.VideoNode:
... return clip
For more information, see :py:func:`check_installed_packages`.
Expand Down
4 changes: 2 additions & 2 deletions lvsfunc/dependency/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ def required_plugins(
.. code-block:: python
>>> @required_plugins(['resize', 'descale'])
... def func(clip: vs.VideoNode) -> vs.VideoNode:
>>> def func(clip: vs.VideoNode) -> vs.VideoNode:
... return clip
>>> @required_plugins({'descale': 'https://github.com/Jaded-Encoding-Thaumaturgy/vapoursynth-descale'})
... def func(clip: vs.VideoNode) -> vs.VideoNode:
>>> def func(clip: vs.VideoNode) -> vs.VideoNode:
... return clip
For more information, see :py:func:`check_installed_plugins`.
Expand Down

0 comments on commit 3fcfc3c

Please sign in to comment.