From 66cd09c789bfcae57e144fcaea86050b97230f18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emil=20Ahlb=C3=A4ck?= Date: Sun, 18 Jun 2023 15:26:54 +0200 Subject: [PATCH] fix tuple error --- gpt_engineer/main.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/gpt_engineer/main.py b/gpt_engineer/main.py index 09faa46..e0dff9c 100644 --- a/gpt_engineer/main.py +++ b/gpt_engineer/main.py @@ -18,10 +18,7 @@ def chat( delete_existing: str = typer.Argument(None, help="delete existing files"), run_prefix: str = typer.Option( "", - help=( - "run prefix, if you want to run multiple variants of the same project and " - "later compare them", - ), + help="run prefix, if you want to run multiple variants of the same project and later compare them", ), model: str = "gpt-4", temperature: float = 0.1,