Skip to content

Commit

Permalink
Remove trailing whitespace in extensions.py
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
rminchev1 committed Oct 27, 2023
1 parent f58c18e commit 0591d0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gpt_engineer/core/extentions.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 0591d0e

Please sign in to comment.