From a224b6b935fcc8365d4f2b248bf8b98442ce731e Mon Sep 17 00:00:00 2001 From: Matt Davis Date: Tue, 23 May 2017 17:35:15 -0400 Subject: [PATCH] DRF-5168 import warnings missed this in last commit --- rest_framework/pagination.py | 1 + 1 file changed, 1 insertion(+) diff --git a/rest_framework/pagination.py b/rest_framework/pagination.py index 0f8e6ddfb..0b6155942 100644 --- a/rest_framework/pagination.py +++ b/rest_framework/pagination.py @@ -5,6 +5,7 @@ be used for paginated responses. """ from __future__ import unicode_literals +import warnings from base64 import b64decode, b64encode from collections import OrderedDict, namedtuple