Skip to content

Commit aaaea39

Browse files
committed
Fixes trailing whitespace
1 parent 6c4a2a0 commit aaaea39

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

dj_rest_auth/registration/views.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ def get_response_data(self, user):
6060
return api_settings.JWT_SERIALIZER(data, context=self.get_serializer_context()).data
6161
elif self.token_model:
6262
return api_settings.TOKEN_SERIALIZER(user.auth_token, context=self.get_serializer_context()).data
63-
6463
return None
6564

6665
def create(self, request, *args, **kwargs):
@@ -103,7 +102,7 @@ class VerifyEmailView(APIView, ConfirmEmailView):
103102
Verifies the email associated with the provided key.
104103
105104
Accepts the following POST parameter: key.
106-
"""
105+
"""
107106
permission_classes = (AllowAny,)
108107
allowed_methods = ('POST', 'OPTIONS', 'HEAD')
109108

0 commit comments

Comments
 (0)