Skip to content

Commit b2edfff

Browse files
committed
fixed pep8 error in social_serializers
fixed pep8 error in social_serializers which cause documentation build error
1 parent ee9e848 commit b2edfff

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)