You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -93,7 +93,7 @@ SECRET_KEY = os.getenv("EMAIL")
93
93
DATABASE_PASSWORD= os.getenv("DATABASE_PASSWORD")
94
94
```
95
95
96
-
`load_dotenv`do not override existing System environment variables. To
96
+
`load_dotenv`does not override existing System environment variables. To
97
97
override, pass `override=True` to `load_dotenv()`.
98
98
99
99
`load_dotenv` also accepts `encoding` parameter to open the `.env` file. The default encoding is platform dependent (whatever `locale.getpreferredencoding()` returns), but any encoding supported by Python can be used. See the [codecs](https://docs.python.org/3/library/codecs.html#standard-encodings) module for the list of supported encodings.
@@ -126,7 +126,7 @@ before passing.
126
126
'EGGS'
127
127
```
128
128
129
-
The returned value is dictionary with key-value pair.
129
+
The returned value is dictionary with key-value pairs.
130
130
131
131
`dotenv_values` could be useful if you need to *consume* the envfile but
132
132
not *apply* it directly into the system environment.
0 commit comments