We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57a19ca commit c5f5a8fCopy full SHA for c5f5a8f
1 file changed
README.md
@@ -121,11 +121,11 @@ before passing.
121
```python
122
>>> from io import StringIO # Python2: from StringIO import StringIO
123
>>> from dotenv import dotenv_values
124
->>> filelike = StringIO('SPAM=EGSS\n')
+>>> filelike = StringIO('SPAM=EGGS\n')
125
>>> filelike.seek(0)
126
>>> parsed = dotenv_values(stream=filelike)
127
>>> parsed['SPAM']
128
-'EGSS'
+'EGGS'
129
```
130
131
The returned value is dictionary with key value pair.
0 commit comments