Skip to content

Commit a705926

Browse files
committed
pass io as kwargs to dotenv
Due to the change in theskumar/python-dotenv#348
1 parent b695716 commit a705926

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rezup/container.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ def recipe_env(self):
347347
parsed_recipe_env.write(buffer)
348348

349349
buffer.seek(0) # must reset buffer
350-
recipe_env_dict = dotenv_values(buffer) # noqa
350+
recipe_env_dict = dotenv_values(stream=buffer) # noqa
351351

352352
return {
353353
k: v for k, v in recipe_env_dict.items()

0 commit comments

Comments
 (0)