Skip to content

Commit d51c43f

Browse files
Add missing interpolate parameter to the docstrings of functions load_dotenv and dotenv_values
1 parent 09d7cee commit d51c43f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/dotenv/main.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -352,6 +352,7 @@ def load_dotenv(
352352
verbose: Whether to output a warning the .env file is missing.
353353
override: Whether to override the system environment variables with the variables
354354
from the `.env` file.
355+
interpolate: Whether to interpolate variables using POSIX variable expansion.
355356
encoding: Encoding to be used to read the file.
356357
Returns:
357358
Bool: True if at least one environment variable is set else False
@@ -402,6 +403,7 @@ def dotenv_values(
402403
dotenv_path: Absolute or relative path to the .env file.
403404
stream: `StringIO` object with .env content, used if `dotenv_path` is `None`.
404405
verbose: Whether to output a warning if the .env file is missing.
406+
interpolate: Whether to interpolate variables using POSIX variable expansion.
405407
encoding: Encoding to be used to read the file.
406408
407409
If both `dotenv_path` and `stream` are `None`, `find_dotenv()` is used to find the

0 commit comments

Comments
 (0)