Skip to content

Commit

Permalink
pass io as kwargs to dotenv
Browse files Browse the repository at this point in the history
Due to the change in
theskumar/python-dotenv#348
  • Loading branch information
davidlatwe committed Oct 15, 2021
1 parent b695716 commit a705926
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rezup/container.py
Expand Up @@ -347,7 +347,7 @@ def recipe_env(self):
parsed_recipe_env.write(buffer)

buffer.seek(0) # must reset buffer
recipe_env_dict = dotenv_values(buffer) # noqa
recipe_env_dict = dotenv_values(stream=buffer) # noqa

return {
k: v for k, v in recipe_env_dict.items()
Expand Down

0 comments on commit a705926

Please sign in to comment.