Remove redundant parentheses in return statement

This commit is contained in:
Omid Raha 2016-04-25 09:53:49 +04:30
parent 1823662e1e
commit a3d51a9350

View File

@ -300,7 +300,7 @@ The following example will authenticate any incoming request as the user given b
except User.DoesNotExist:
raise exceptions.AuthenticationFailed('No such user')
return (user, None)
return user, None
---