Skip to content

Commit 3ece8b2

Browse files
committed
[BUGFIX] remove imports from __init__
1 parent 0468fb6 commit 3ece8b2

File tree

3 files changed

+4
-11
lines changed

3 files changed

+4
-11
lines changed

asyncly/client/handlers/__init__.py

-9
Original file line numberDiff line numberDiff line change
@@ -1,9 +0,0 @@
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-
)

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ packages = [
3434

3535
[tool.poetry.urls]
3636
"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"
3838

3939
[tool.poetry.dependencies]
4040
python = "^3.10"

tests/plugins/client.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
from yarl import URL
1010

1111
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
1315
from asyncly.client.timeout import TimeoutType
1416

1517

0 commit comments

Comments
 (0)