style: Run linter

This commit is contained in:
Paul Gauthier (aider) 2024-09-25 11:10:06 -07:00
parent 888d60d472
commit 0a7e5f313f
2 changed files with 3 additions and 3 deletions

View file

@ -537,7 +537,7 @@ def main(argv=None, input=None, output=None, force_git_root=None, return_coder=F
args.model,
weak_model=args.weak_model,
junior_model=args.junior_model,
junior_edit_format=args.junior_edit_format
junior_edit_format=args.junior_edit_format,
)
if args.verbose:

View file

@ -717,11 +717,11 @@ class Model(ModelSettings):
weak_model=False,
junior_model=False,
)
# Use the provided junior_edit_format if available, otherwise use the ModelSettings value
if self.junior_edit_format is None:
self.junior_edit_format = self.junior_edit_format or self.junior_model.edit_format
return self.junior_model
def tokenizer(self, text):