fix: Remove pretty argument from Coder.create method call

This commit is contained in:
Paul Gauthier (aider) 2024-08-10 09:01:18 -07:00
parent fdc728e286
commit 216f03919d

View file

@ -289,7 +289,7 @@ after b
# Initialize the Coder object with the mocked IO and mocked repo # Initialize the Coder object with the mocked IO and mocked repo
coder = Coder.create( coder = Coder.create(
self.GPT35, "whole", io=InputOutput(), fnames=files, stream=False, pretty=False self.GPT35, "whole", io=InputOutput(), fnames=files, stream=False
) )
# no trailing newline so the response content below doesn't add ANOTHER newline # no trailing newline so the response content below doesn't add ANOTHER newline