MCPcopy
hub / github.com/Aider-AI/aider / __init__

Method __init__

aider/coders/base_coder.py:57–62  ·  view source on GitHub ↗
(self, edit_format, valid_formats)

Source from the content-addressed store, hash-verified

55
56class UnknownEditFormat(ValueError):
57 def __init__(self, edit_format, valid_formats):
58 self.edit_format = edit_format
59 self.valid_formats = valid_formats
60 super().__init__(
61 f"Unknown edit format {edit_format}. Valid formats are: {', '.join(valid_formats)}"
62 )
63
64
65class MissingAPIKeyError(ValueError):

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected