From a96ebd74b1c27f4fa63f7bae5f9157f1140f9570 Mon Sep 17 00:00:00 2001 From: Petros Moisiadis Date: Tue, 19 May 2015 19:48:53 +0300 Subject: [PATCH] Fix flake8 error Fix flake8 error --- rest_framework/authentication.py | 1 + 1 file changed, 1 insertion(+) diff --git a/rest_framework/authentication.py b/rest_framework/authentication.py index 617256762..cf54d4563 100644 --- a/rest_framework/authentication.py +++ b/rest_framework/authentication.py @@ -10,6 +10,7 @@ from rest_framework import exceptions, HTTP_HEADER_ENCODING from rest_framework.authtoken.models import Token from rest_framework.compat import get_user_model + def get_authorization_header(request): """ Return request's 'Authorization:' header, as a bytestring.