We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d859aba commit 5d3d105Copy full SHA for 5d3d105
linebot/api.py
@@ -5,9 +5,7 @@
5
6
from .__about__ import __version__
7
from .exceptions import LineBotApiError
8
-from .http_client import (
9
- RequestsHttpClient, HttpClient
10
-)
+from .http_client import RequestsHttpClient
11
from .models.error import Error
12
from .models.profile import Profile
13
@@ -16,7 +14,7 @@ class LineBotApi(object):
16
14
DEFAULT_API_ENDPOINT = 'https://api.line.me'
17
15
18
def __init__(self, channel_access_token, endpoint=DEFAULT_API_ENDPOINT,
19
- timeout=HttpClient.DEFAULT_TIMEOUT, http_client=RequestsHttpClient):
+ timeout=RequestsHttpClient.DEFAULT_TIMEOUT, http_client=RequestsHttpClient):
20
"""Constructor of LineBotApi Client
21
22
Args:
0 commit comments