From fe95ab675bef1b185324be4b1b7fc7100c41c823 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Fri, 16 Jun 2017 13:23:26 +0200 Subject: [PATCH] doc: fix documentation for Request._authenticate It does not return anything. --- rest_framework/request.py | 1 - 1 file changed, 1 deletion(-) diff --git a/rest_framework/request.py b/rest_framework/request.py index 9428708ed..ffbe4a367 100644 --- a/rest_framework/request.py +++ b/rest_framework/request.py @@ -335,7 +335,6 @@ class Request(object): """ Attempt to authenticate the request using each authentication instance in turn. - Returns a three-tuple of (authenticator, user, authtoken). """ for authenticator in self.authenticators: try: