Skip to content

Commit 2159c69

Browse files
committed
Fix flake8 line length error
Signed-off-by: Dan Ryan <dan.ryan@canonical.com>
1 parent e9c04f9 commit 2159c69

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/dotenv/main.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,8 @@ def load_dotenv(dotenv_path=None, stream=None, verbose=False, override=False, **
279279
- *dotenv_path*: absolute or relative path to .env file.
280280
- *stream*: `StringIO` object with .env content.
281281
- *verbose*: whether to output the warnings related to missing .env file etc. Defaults to `False`.
282-
- *override*: where to override the system environment variables with the variables in `.env` file. Defaults to `False`.
282+
- *override*: where to override the system environment variables with the variables in `.env` file.
283+
Defaults to `False`.
283284
"""
284285
f = dotenv_path or stream or find_dotenv()
285286
return DotEnv(f, verbose=verbose, **kwargs).set_as_environment_variables(override=override)

0 commit comments

Comments
 (0)