Fix import ordering: move PIL into the third-party block

ruff I001: PIL was in an isolated block between stdlib and django.
Move it into the same third-party block, alphabetically between
django and rest_framework (d < p < r).
This commit is contained in:
Brian Tiemann 2026-06-09 18:58:00 -04:00
parent 78a53cb87c
commit a0c91099d8
1 changed files with 1 additions and 2 deletions

View File

@ -3,8 +3,6 @@ import json
import urllib.parse
from pathlib import Path
from PIL import Image as PillowImage
from django.conf import settings
from django.contrib.contenttypes.fields import GenericForeignKey, GenericRelation
from django.contrib.postgres.fields import ArrayField
@ -15,6 +13,7 @@ from django.utils import timezone
from django.utils.html import escape
from django.utils.safestring import mark_safe
from django.utils.translation import gettext_lazy as _
from PIL import Image as PillowImage
from rest_framework.utils.encoders import JSONEncoder
from extras.choices import *