Skip to content

Commit

Permalink
Update utils.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tushar5526 authored Jan 30, 2024
1 parent 2087abc commit 1c951fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ def inject_env_variables(self, project_path):
secret_data = response.json()
with open(os.path.join(project_path, ".env"), "w") as file:
for key, value in secret_data["data"]["data"].items():
file.write(f"{key}={value}\n")
file.write(f'{key}="{value}"\n')

Check warning on line 336 in server/utils.py

View check run for this annotation

Codecov / codecov/patch

server/utils.py#L336

Added line #L336 was not covered by tests


def get_random_stub(project_name: str) -> str:
Expand Down

0 comments on commit 1c951fc

Please sign in to comment.