Skip to content

Commit c690d4e

Browse files
Fixup quickstart (#52)
1 parent 30eb422 commit c690d4e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Install using ...
44

55
```shell
6-
$ pip install https://staging.d2pg1230p7w6nv.amplifyapp.com/httpx-design-proposal.tar.gz
6+
$ pip install git+https://github.com/encode/httpnext.git
77
```
88

99
First, start by importing `httpx`...

src/ahttpx/_models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ def multi_dict(self) -> dict[str, list[str]]:
361361
#
362362
# `dict[str, list[str]]` - {"Content_Type": ["text/html"], ...}
363363
# `dict[str, str | list[str]]` - {"Content_Type": "text/html", ...}
364-
raise NotImplementedError()
364+
return {k: v for _, k, v in self._state}
365365

366366
# Modifiers...
367367

src/httpx/_models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ def multi_dict(self) -> dict[str, list[str]]:
361361
#
362362
# `dict[str, list[str]]` - {"Content_Type": ["text/html"], ...}
363363
# `dict[str, str | list[str]]` - {"Content_Type": "text/html", ...}
364-
raise NotImplementedError()
364+
return {k: v for _, k, v in self._state}
365365

366366
# Modifiers...
367367

0 commit comments

Comments
 (0)