Skip to content

Commit

Permalink
Merge branch 'main' into pyproject_fix_pip
Browse files Browse the repository at this point in the history
  • Loading branch information
saattrupdan authored Jun 24, 2024
2 parents 44b773a + 84fdab0 commit 7f5b9b3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def fix_dot_env_file(non_interactive: bool, include_openai: bool) -> None:
if value == "" and not non_interactive:
value = input(desired_env_vars[env_var])

f.write(f'{env_var}="{value}"\n')
f.write(f"{env_var}={value}\n")

# Remove the name and email file
name_and_email_path.unlink()
Expand Down

0 comments on commit 7f5b9b3

Please sign in to comment.