Skip to content

Commit

Permalink
fix: use CoderPrompts base class as type for AskCoder.gpt_prompts
Browse files Browse the repository at this point in the history
  • Loading branch information
akaihola committed Dec 29, 2024
1 parent 00eaf61 commit 94c963c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion aider/coders/ask_coder.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
from .ask_prompts import AskPrompts
from .base_coder import Coder
from .base_prompts import CoderPrompts


class AskCoder(Coder):
"""Ask questions about code without making any changes."""

edit_format = "ask"
gpt_prompts = AskPrompts()
gpt_prompts: CoderPrompts = AskPrompts()

0 comments on commit 94c963c

Please sign in to comment.