Skip to content

Commit 6274f70

Browse files
committed
_client to client
1 parent 1300f4e commit 6274f70

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

resources/lib/twitch/oauth.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ class MobileClient:
1010

1111
def __init__(self, client_id=''):
1212
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
13+
self.client = MobileApplicationClient(client_id=client_id)
14+
self.parse_request_uri_response = self.client.parse_request_uri_response
1515

1616
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)
17+
return self.client.prepare_request_uri(self._auth_base_url, redirect_uri=redirect_uri, scope=scope)

0 commit comments

Comments
 (0)