From ea612e2d15bd1a41a416e8eb888817f1d0dc44bf Mon Sep 17 00:00:00 2001 From: Roni Choudhury Date: Mon, 29 Jan 2024 13:54:55 -0500 Subject: [PATCH] Fix isort error --- rest_framework/checks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest_framework/checks.py b/rest_framework/checks.py index 12c75db3c..d6a6d7d90 100644 --- a/rest_framework/checks.py +++ b/rest_framework/checks.py @@ -1,4 +1,4 @@ -from django.core.checks import Tags, Error, Warning, register +from django.core.checks import Error, Tags, Warning, register @register(Tags.compatibility)