Skip to content

Commit f327da2

Browse files
authored
Fix env_vars dict syntax (#11)
1 parent 2c7716d commit f327da2

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

docs/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -555,11 +555,11 @@ elements in command line tools that avoid the agent getting stuck (you can see t
555555

556556
```python
557557
env_vars = {
558-
PAGER: cat
559-
MANPAGER: cat
560-
LESS: -R
561-
PIP_PROGRESS_BAR: 'off'
562-
TQDM_DISABLE: '1'
558+
"PAGER": "cat",
559+
"MANPAGER": "cat",
560+
"LESS": "-R",
561+
"PIP_PROGRESS_BAR": "off",
562+
"TQDM_DISABLE": "1",
563563
}
564564

565565
# ...

0 commit comments

Comments
 (0)