Skip to content

Commit 628df0b

Browse files
Fix PEP8 for "user.py"
1 parent b27831a commit 628df0b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

instagram/user.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
import asyncio
2828
import inspect
29-
from .http import HTTPClient
29+
from .http import HTTPClient, LoginFailure
3030
from .errors import HTTPException
3131

3232

@@ -102,7 +102,7 @@ def set_token_from_code(self, client_id, client_secret, redirect_uri,
102102
@asyncio.coroutine
103103
def update_user_info(self):
104104
data = yield from self.get_self()
105-
__set_user_data(data)
105+
self.__set_user_data(data)
106106
return data
107107

108108
@asyncio.coroutine

0 commit comments

Comments
 (0)