From f36fb372181f138312f5946bc68b373a6de92a60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Pedro?= Date: Thu, 7 Mar 2019 12:52:51 +1300 Subject: [PATCH] Removed comments --- rest_framework/throttling.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest_framework/throttling.py b/rest_framework/throttling.py index 425f2fcde..880ae54f4 100644 --- a/rest_framework/throttling.py +++ b/rest_framework/throttling.py @@ -132,7 +132,7 @@ class SimpleRateThrottle(BaseThrottle): if len(self.history) >= self.num_requests: return False - return True # self.throttle_success() + return True def throttle_success(self, request, view): """