Skip to content

Commit

Permalink
Improve readability in gen_entrypoint function
Browse files Browse the repository at this point in the history
Adjusted the string concatenation in the gen_entrypoint function to enhance readability. This change breaks the string across two lines, making the code more maintainable and easier to understand.
  • Loading branch information
rminchev1 committed Oct 13, 2023
1 parent a2a5143 commit 8538892
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gpt_engineer/steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,8 @@ def gen_entrypoint(ai: AI, dbs: DBs) -> List[dict]:
"Do not use placeholders, use example values (like . for a folder argument) "
"if necessary.\n"
),
user="Information about the codebase:\n\n" + dbs.project_metadata["all_output.txt"],
user="Information about the codebase:\n\n"
+ dbs.project_metadata["all_output.txt"],
step_name=curr_fn(),
)
print()
Expand Down

0 comments on commit 8538892

Please sign in to comment.