Skip to content

Commit 2d18bd8

Browse files
committed
Fix httptools (relative import, its not the pypi package of the same
name)
1 parent f04e185 commit 2d18bd8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

qencode/client.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
from httptools import Http
2-
from metadata import Metadata
31
from task import Task
42

3+
from .httptools import Http
4+
from .metadata import Metadata
5+
56

67
class Client(object):
78
def __init__(self, api_key, api_url=None, version=None):

0 commit comments

Comments
 (0)