mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-03 03:05:00 +00:00
style: Format Model class constructor for readability
This commit is contained in:
parent
1b3cae1ed5
commit
ce3f732645
1 changed files with 3 additions and 1 deletions
|
@ -230,7 +230,9 @@ model_info_manager = ModelInfoManager()
|
||||||
|
|
||||||
|
|
||||||
class Model(ModelSettings):
|
class Model(ModelSettings):
|
||||||
def __init__(self, model, weak_model=None, editor_model=None, editor_edit_format=None, verbose=False):
|
def __init__(
|
||||||
|
self, model, weak_model=None, editor_model=None, editor_edit_format=None, verbose=False
|
||||||
|
):
|
||||||
# Map any alias to its canonical name
|
# Map any alias to its canonical name
|
||||||
model = MODEL_ALIASES.get(model, model)
|
model = MODEL_ALIASES.get(model, model)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue