File tree 3 files changed +4
-11
lines changed
3 files changed +4
-11
lines changed Original file line number Diff line number Diff line change 1
- from asyncly .client .handlers .json import parse_json
2
- from asyncly .client .handlers .msgspec import parse_struct
3
- from asyncly .client .handlers .pydantic import parse_model
4
-
5
- __all__ = (
6
- "parse_model" ,
7
- "parse_json" ,
8
- "parse_struct" ,
9
- )
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ packages = [
34
34
35
35
[tool .poetry .urls ]
36
36
"Source" = " https://github.com/andy-takker/asyncly"
37
- "Bug Tracker" = " https://github.com/andy-takker/v /issues"
37
+ "Bug Tracker" = " https://github.com/andy-takker/asyncly /issues"
38
38
39
39
[tool .poetry .dependencies ]
40
40
python = " ^3.10"
Original file line number Diff line number Diff line change 9
9
from yarl import URL
10
10
11
11
from asyncly import DEFAULT_TIMEOUT , BaseHttpClient , ResponseHandlersType
12
- from asyncly .client .handlers import parse_json , parse_model , parse_struct
12
+ from asyncly .client .handlers .json import parse_json
13
+ from asyncly .client .handlers .msgspec import parse_struct
14
+ from asyncly .client .handlers .pydantic import parse_model
13
15
from asyncly .client .timeout import TimeoutType
14
16
15
17
You can’t perform that action at this time.
0 commit comments