We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1300f4e commit 6274f70Copy full SHA for 6274f70
1 file changed
resources/lib/twitch/oauth.py
@@ -10,8 +10,8 @@ class MobileClient:
10
11
def __init__(self, client_id=''):
12
self.client_id = client_id if client_id else CLIENT_ID
13
- self._client = MobileApplicationClient(client_id=client_id)
14
- self.parse_request_uri_response = self._client.parse_request_uri_response
+ self.client = MobileApplicationClient(client_id=client_id)
+ self.parse_request_uri_response = self.client.parse_request_uri_response
15
16
def prepare_request_uri(self, redirect_uri='http://localhost:3000/', scope=list()):
17
- return self._client.prepare_request_uri(self._auth_base_url, redirect_uri=redirect_uri, scope=scope)
+ return self.client.prepare_request_uri(self._auth_base_url, redirect_uri=redirect_uri, scope=scope)
0 commit comments