Skip to content

Commit 42350db

Browse files
committed
Formatting
1 parent 35864e0 commit 42350db

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

gpt_engineer/main.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def load_env_if_needed():
2929
def load_prompt(dbs: DBs):
3030
if dbs.input.get("prompt"):
3131
return dbs.input.get("prompt")
32-
32+
3333
if dbs.workspace.get("prompt"):
3434
dbs.input["prompt"] = dbs.workspace.get("prompt")
3535
del dbs.workspace["prompt"]
@@ -95,8 +95,9 @@ def main(
9595
azure_endpoint=azure_endpoint,
9696
)
9797

98-
99-
project_path = os.path.abspath(project_path) # resolve the string to a valid path (eg a/b/../c to a/c)
98+
project_path = os.path.abspath(
99+
project_path
100+
) # resolve the string to a valid path (eg a/b/../c to a/c)
100101
path = Path(project_path).absolute()
101102
print("Running gpt-engineer in", path, "\n")
102103

0 commit comments

Comments
 (0)