Skip to content

Commit fa4e6a9

Browse files
Add missing interpolate parameter to the docstrings of functions load_dotenv and dotenv_values (#614)
1 parent da0c820 commit fa4e6a9

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
@@ -397,6 +397,7 @@ def load_dotenv(
397397
verbose: Whether to output a warning the .env file is missing.
398398
override: Whether to override the system environment variables with the variables
399399
from the `.env` file.
400+
interpolate: Whether to interpolate variables using POSIX variable expansion.
400401
encoding: Encoding to be used to read the file.
401402
Returns:
402403
Bool: True if at least one environment variable is set else False
@@ -447,6 +448,7 @@ def dotenv_values(
447448
dotenv_path: Absolute or relative path to the .env file.
448449
stream: `StringIO` object with .env content, used if `dotenv_path` is `None`.
449450
verbose: Whether to output a warning if the .env file is missing.
451+
interpolate: Whether to interpolate variables using POSIX variable expansion.
450452
encoding: Encoding to be used to read the file.
451453
452454
If both `dotenv_path` and `stream` are `None`, `find_dotenv()` is used to find the

0 commit comments

Comments
 (0)