Skip to content

Commit 59fdb14

Browse files
committed
fixed client.py
1 parent 2a74329 commit 59fdb14

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

qencode/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class QencodeApiClient(object):
99
"""
1010
def __init__(self, api_key, api_url=None, version=None, **kwargs):
1111
self.api_key = api_key
12-
self.api_url = api_url if api_url else 'https://api-qa.qencode.com' # 'https://api.qencode.com/'
12+
self.api_url = api_url if api_url else 'https://api.qencode.com/'
1313
self.version = version if version else 'v1'
1414
self.connect = Http(self.version, self.api_url)
1515
self.access_token = None

0 commit comments

Comments
 (0)