From 436f61ca21ede4cd0842fff5014fddf9350bc466 Mon Sep 17 00:00:00 2001 From: Pravin Kamble Date: Mon, 21 Aug 2023 21:55:48 +0530 Subject: [PATCH] fix the white spacing --- rest_framework/throttling.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/rest_framework/throttling.py b/rest_framework/throttling.py index 3587d13dc..92bb9cd1c 100644 --- a/rest_framework/throttling.py +++ b/rest_framework/throttling.py @@ -5,9 +5,10 @@ import time from django.core.cache import cache as default_cache from django.core.exceptions import ImproperlyConfigured -from rest_framework.utils.throttling_duration_parser import parse_quantity_and_unit - from rest_framework.settings import api_settings +from rest_framework.utils.throttling_duration_parser import ( + parse_quantity_and_unit +) class BaseThrottle: