Skip to content

Commit

Permalink
Add missing comma to code example (#337)
Browse files Browse the repository at this point in the history
Closes #336
  • Loading branch information
johtso committed May 13, 2021
1 parent 3eff24e commit 958d992
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ with httpcore.SyncConnectionPool() as http:
status_code, headers, stream, extensions = http.handle_request(
method=b'GET',
url=(b'https', b'example.org', 443, b'/'),
headers=[(b'host', b'example.org'), (b'user-agent', b'httpcore')]
headers=[(b'host', b'example.org'), (b'user-agent', b'httpcore')],
stream=httpcore.ByteStream(b''),
extensions={}
)
Expand Down

0 comments on commit 958d992

Please sign in to comment.