From 7a96c47a8ba04a1d8f5c8552582026f574aab260 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sun, 28 Jul 2024 20:22:50 -0300 Subject: [PATCH] Add docstrings to AskCoder and HelpCoder classes --- aider/coders/ask_coder.py | 2 ++ aider/coders/help_coder.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/aider/coders/ask_coder.py b/aider/coders/ask_coder.py index c9a754b64..33da037d4 100644 --- a/aider/coders/ask_coder.py +++ b/aider/coders/ask_coder.py @@ -3,5 +3,7 @@ from .base_coder import Coder class AskCoder(Coder): + """Ask questions about code without making any changes.""" + edit_format = "ask" gpt_prompts = AskPrompts() diff --git a/aider/coders/help_coder.py b/aider/coders/help_coder.py index d3a011695..fcb1e6aa1 100644 --- a/aider/coders/help_coder.py +++ b/aider/coders/help_coder.py @@ -4,7 +4,7 @@ from .help_prompts import HelpPrompts class HelpCoder(Coder): - """A coder that provides help and documentation.""" + """Interactive help and documentation about aider.""" edit_format = "help" gpt_prompts = HelpPrompts()