From 84fdab0a514aa23bf05666bf355afe15f59a72c3 Mon Sep 17 00:00:00 2001 From: saattrupdan Date: Sun, 23 Jun 2024 15:38:27 +0200 Subject: [PATCH] fix: Remove quotes around .env values --- {{cookiecutter.project_name}}/src/scripts/fix_dot_env_file.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_name}}/src/scripts/fix_dot_env_file.py b/{{cookiecutter.project_name}}/src/scripts/fix_dot_env_file.py index e48e629..4e08f8e 100644 --- a/{{cookiecutter.project_name}}/src/scripts/fix_dot_env_file.py +++ b/{{cookiecutter.project_name}}/src/scripts/fix_dot_env_file.py @@ -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()