Skip to content

Commit

Permalink
refactor(examples): update chainable.py example
Browse files Browse the repository at this point in the history
  • Loading branch information
h2non committed Dec 4, 2016
1 parent 7927ebe commit c8cceee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/chainable_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
(pook.post('httpbin.org/post')
.json({'foo': 'bar'})
.type('json')
.header({'Client': 'requests'})
.header('Client', 'requests')
.reply(204)
.headers({'server': 'pook'})
.json({'error': 'simulated'}))
Expand Down

0 comments on commit c8cceee

Please sign in to comment.