Skip to content

Commit

Permalink
fix: Remove quotes around .env values
Browse files Browse the repository at this point in the history
  • Loading branch information
saattrupdan committed Jun 23, 2024
1 parent 81477ff commit 84fdab0
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 84fdab0

Please sign in to comment.