Skip to content

Commit c5f5a8f

Browse files
timtheliontheskumar
authored andcommitted
EGSS → EGGS (theskumar#139)
1 parent 57a19ca commit c5f5a8f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,11 +121,11 @@ before passing.
121121
```python
122122
>>> from io import StringIO # Python2: from StringIO import StringIO
123123
>>> from dotenv import dotenv_values
124-
>>> filelike = StringIO('SPAM=EGSS\n')
124+
>>> filelike = StringIO('SPAM=EGGS\n')
125125
>>> filelike.seek(0)
126126
>>> parsed = dotenv_values(stream=filelike)
127127
>>> parsed['SPAM']
128-
'EGSS'
128+
'EGGS'
129129
```
130130

131131
The returned value is dictionary with key value pair.

0 commit comments

Comments
 (0)