From 65f9d39d954a4da9032f0c96ac858e28a9e59ba0 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Fri, 3 Nov 2023 14:40:46 -0700 Subject: [PATCH] copy --- docs/faq.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/faq.md b/docs/faq.md index d736e9a1e..e9f437915 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -276,7 +276,7 @@ You can also script aider from python: from aider.coders import Coder # This is a list of files to add to the chat -fnames = ['foo.py'] +fnames = ["foo.py"] # Create a coder object coder = Coder.create(fnames=fnames) @@ -286,5 +286,4 @@ coder.run("make a script that prints hello world") # Send another instruction coder.run("make it say goodbye") - ```