From 0591d0ef7727b1078b3c1e73dcab80d24349b8c5 Mon Sep 17 00:00:00 2001 From: Rado Date: Fri, 27 Oct 2023 11:43:10 +0300 Subject: [PATCH] Remove trailing whitespace in extensions.py This commit removes an unnecessary trailing whitespace found in the extensions.py file. This change is minor and does not affect the functionality of the code. It is done to maintain clean and consistent code formatting. --- gpt_engineer/core/extentions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpt_engineer/core/extentions.py b/gpt_engineer/core/extentions.py index 67b96d8ce1..9d35362510 100644 --- a/gpt_engineer/core/extentions.py +++ b/gpt_engineer/core/extentions.py @@ -298,7 +298,7 @@ def run_llm_and_get_tokens( while not ai.streaming_handler.llm_finished: tokens = ai.streaming_handler.get_tokens() - output_tokens.append(tokens) + output_tokens.append(tokens) time.sleep(0.1) call_next_thread.join()