From a3d51a9350da336c366c48589a4b7f9ba6ffe4ee Mon Sep 17 00:00:00 2001 From: Omid Raha Date: Mon, 25 Apr 2016 09:53:49 +0430 Subject: [PATCH] Remove redundant parentheses in return statement --- docs/api-guide/authentication.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api-guide/authentication.md b/docs/api-guide/authentication.md index 3d1cfd1e8..968847db9 100644 --- a/docs/api-guide/authentication.md +++ b/docs/api-guide/authentication.md @@ -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 ---