Skip to content

Commit b6dfd69

Browse files
committed
Merge pull request #177 from tevinjoseph/master
fixed pep8 error in social_serializers
2 parents bb7b127 + b2edfff commit b6dfd69

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rest_auth/social_serializers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ def validate(self, attrs):
5858
raise serializers.ValidationError('Incorrect input. access_token and token_secret are required.')
5959

6060
request.session['oauth_api.twitter.com_access_token'] = {
61-
'oauth_token': access_token,
62-
'oauth_token_secret': token_secret,
61+
'oauth_token': access_token,
62+
'oauth_token_secret': token_secret,
6363
}
6464
token = SocialToken(token=access_token, token_secret=token_secret)
6565
token.app = app

0 commit comments

Comments
 (0)