message edit

This commit is contained in:
Jesse Bannon 2025-08-17 06:56:23 -07:00
parent 413498639d
commit 8597e102ca
5 changed files with 10 additions and 5 deletions

View file

@ -3,7 +3,8 @@
The respective plugin files under src/ytdl_sub/plugins/
In order to make a change to this file, edit the respective docstring
and run `make docs`. This will automatically sync the Python RST-based
docstrings into this file.
docstrings into this file. If the docstrings and RST file are out of sync,
it will fail TestDocGen tests in GitHub CI.
Plugins
=======

View file

@ -3,7 +3,8 @@
src/ytdl_sub/entries/script/variable_definitions.py
In order to make a change to this file, edit the respective docstring
and run `make docs`. This will automatically sync the Python RST-based
docstrings into this file.
docstrings into this file. If the docstrings and RST file are out of sync,
it will fail TestDocGen tests in GitHub CI.
Entry Variables
===============

View file

@ -3,7 +3,8 @@
The respective function files under src/ytdl_sub/script/functions/
In order to make a change to this file, edit the respective docstring
and run `make docs`. This will automatically sync the Python RST-based
docstrings into this file.
docstrings into this file. If the docstrings and RST file are out of sync,
it will fail TestDocGen tests in GitHub CI.
Scripting Functions
===================

View file

@ -3,7 +3,8 @@
src/ytdl_sub/entries/variables/override_variables.py
In order to make a change to this file, edit the respective docstring
and run `make docs`. This will automatically sync the Python RST-based
docstrings into this file.
docstrings into this file. If the docstrings and RST file are out of sync,
it will fail TestDocGen tests in GitHub CI.
Static Variables
================

View file

@ -24,7 +24,8 @@ class DocGen:
f" {cls.DOCSTRING_LOCATION}\n"
" In order to make a change to this file, edit the respective docstring\n"
" and run `make docs`. This will automatically sync the Python RST-based\n"
" docstrings into this file.\n"
" docstrings into this file. If the docstrings and RST file are out of sync,\n"
" it will fail TestDocGen tests in GitHub CI.\n"
)
@classmethod