Convert docstrings from RST to Google style #559
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Converted all RST-style docstrings to Google-style format across the looper codebase for improved readability and consistency with modern Python documentation standards.
Changes
Docstring format conversion (107+ docstrings across 15 files)
:param type name: desc→Args:\n name (type): Desc.:return type: desc→Returns:\n type: Desc.:raise Exception: desc→Raises:\n Exception: Desc.Import cleanup
from .const import *) with explicit importsStandardization
Example
Before:
After:
Files Modified
Core modules:
utils.py,conductor.py,project.py,pipeline_interface.py,divvy.py,looper.py,processed_project.pySupporting modules:
const.py,exceptions.py,plugins.py,parser_types.py,cli_pydantic.py,cli_divvy.py,command_models/arguments.py,command_models/commands.pyVerification: All semantic meaning preserved. No type annotations, parameter descriptions, or return values were altered—only formatting changed.
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.