Skip to content

Commit 1cd4368

Browse files
author
Zheyuan Chen
authored
Update README.md
1 parent ceef672 commit 1cd4368

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@ Here is an example of requesting a list of urls in parrallel
5555
``` python
5656
import requests
5757
(
58-
(pipe(['google', 'twitter', 'yahoo', 'facebook', 'github'])
58+
pipe(['google', 'twitter', 'yahoo', 'facebook', 'github'])
5959
| each(lambda name: 'http://' + name + '.com')
6060
| [requests.get] * 3 # !! `requests.get` runs in a ThreadPool of size 3
6161
| each(lambda resp: (resp.url, resp.headers.get('Server')))
62-
| dump())
62+
| dump()
6363
)
6464

6565
# returns

0 commit comments

Comments
 (0)