From ce0fe7a7c657f79bdd1265f07487a8e60f63c18b Mon Sep 17 00:00:00 2001 From: awiebe Date: Fri, 25 Aug 2023 16:43:21 -0700 Subject: [PATCH] Make Flake8 happy --- rest_framework/throttling.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rest_framework/throttling.py b/rest_framework/throttling.py index cd015dd8a..37e71e93e 100644 --- a/rest_framework/throttling.py +++ b/rest_framework/throttling.py @@ -56,7 +56,7 @@ class SimpleRateThrottle(BaseThrottle): class. The attribute is a string of the form 'number_of_requests/period'. Period should be one of: ('s', 'sec', 'm', 'min', 'h', 'hour', 'd', 'day') - You may prefix period with a number. For example '1/30s' would be one + You may prefix period with a number. For example '1/30s' would be one request every 30 seconds. Previous request information used for throttling is stored in the cache. @@ -106,7 +106,7 @@ class SimpleRateThrottle(BaseThrottle): num, period = rate.split('/') num_requests = int(num) denominator_num = period[:-1] - denominator_num = int(denominator_num) if len(denominator_num)>0 else 1 + denominator_num = int(denominator_num) if len(denominator_num) > 0 else 1 duration = {'s': 1, 'm': 60, 'h': 3600, 'd': 86400}[period[-1]] duration *= denominator_num return (num_requests, duration)